.page-contact {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
}

.page-contact__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    overflow: hidden;
    background-color: #000000; /* Fallback background */
}

.page-contact__hero-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7); /* Darken image for text readability */
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.4); /* Additional overlay for text contrast */
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    color: #FFFFFF;
}

.page-contact__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-contact__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-contact__button--register:hover {
    background-color: #E0E0E0;
    transform: translateY(-2px);
}

.page-contact__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-contact__button--login:hover {
    background-color: #E6A83E;
    transform: translateY(-2px);
}

.page-contact__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-contact__channels-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-contact__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__channel-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__channel-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 400px; /* Max width for image within card */
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-contact__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000000;
    font-weight: bold;
}

.page-contact__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__button--livechat,
.page-contact__button--email,
.page-contact__button--faq,
.page-contact__button--social {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-contact__button--livechat:hover,
.page-contact__button--email:hover,
.page-contact__button--faq:hover,
.page-contact__button--social:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.page-contact__email-link, .page-contact__phone-link {
    color: #000000;
    text-decoration: underline;
}

.page-contact__email-link:hover, .page-contact__phone-link:hover {
    color: #FCBC45;
}

.page-contact__responsible-gaming-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-contact__responsible-gaming-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__responsible-gaming-content p {
    margin-bottom: 15px;
    color: #333333;
}

.page-contact__responsible-gaming-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-contact__responsible-gaming-list li {
    margin-bottom: 10px;
}

.page-contact__button--responsible-gaming {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 20px;
}

.page-contact__button--responsible-gaming:hover {
    background-color: #E6A83E;
    border-color: #E6A83E;
    transform: translateY(-2px);
}

.page-contact__feedback-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-contact__feedback-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__form-group {
    margin-bottom: 20px;
}

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 1em;
    color: #333333;
    background-color: #fefefe;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #999999;
}

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__button--submit {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    width: auto;
    cursor: pointer;
}

.page-contact__button--submit:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.page-contact__faq-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-contact__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.page-contact__faq-item {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FCBC45;
}

.page-contact__faq-question {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #000000;
    font-weight: bold;
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
}

.page-contact__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-contact__button--small:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-1px);
}

.page-contact__link {
    color: #000000;
    text-decoration: underline;
}

.page-contact__link:hover {
    color: #FCBC45;
}

.page-contact__more-faq-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 20px;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__card-title {
        font-size: 1.5em;
    }
    .page-contact__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__section-subtitle {
        font-size: 0.95em;
    }
    .page-contact__channels-grid,
    .page-contact__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__hero-image,
    .page-contact__channel-icon,
    .page-contact__responsible-gaming-content img,
    .page-contact__feedback-form img,
    .page-contact__faq-item img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images within .page-contact are responsive and not smaller than 200px */
    .page-contact img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__section-subtitle {
        font-size: 0.9em;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        font-size: 0.9em;
    }
    .page-contact__button--submit {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}