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

.page-contact__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Constrain hero content width */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtly blend image with dark background */
    z-index: 0;
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-contact__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
    min-width: 180px;
    text-align: center;
}

.page-contact__hero-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-contact__hero-button--login:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-contact__hero-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-contact__hero-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-contact__contact-options-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__options-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #000000;
}

.page-contact__options-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #555555;
}

.page-contact__options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-contact__option-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__option-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    object-fit: contain; /* Ensure icons are properly scaled */
}

.page-contact__option-heading {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000000;
}

.page-contact__option-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
    flex-grow: 1;
}

.page-contact__option-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__option-button:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-contact__faq-section,
.page-contact__feedback-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f0f0f0;
}

.page-contact__faq-title,
.page-contact__feedback-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #000000;
}

.page-contact__faq-description,
.page-contact__feedback-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555555;
}

.page-contact__faq-button,
.page-contact__feedback-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__faq-button:hover,
.page-contact__feedback-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 3em;
    }
    .page-contact__options-title,
    .page-contact__faq-title,
    .page-contact__feedback-title {
        font-size: 2.5em;
    }
    .page-contact__option-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding-top: var(--header-offset, 120px);
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
        min-width: unset;
    }
    .page-contact__options-section,
    .page-contact__faq-section,
    .page-contact__feedback-section {
        padding: 60px 15px;
    }
    .page-contact__options-title,
    .page-contact__faq-title,
    .page-contact__feedback-title {
        font-size: 2em;
    }
    .page-contact__options-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__option-card {
        padding: 25px;
    }
    .page-contact__option-icon {
        width: 200px; /* Ensure mobile icons are not too small */
        height: 200px;
    }

    /* Prevent content area images from overflowing */
    .page-contact__container img,
    .page-contact__options-grid img,
    .page-contact__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__options-title,
    .page-contact__faq-title,
    .page-contact__feedback-title {
        font-size: 1.8em;
    }
    .page-contact__hero-container {
        padding: 40px 15px;
    }
    .page-contact__hero-button {
        min-width: 140px;
    }
}

/* Ensure all images in content area are at least 200px wide/high */
.page-contact__contact-options-section img, 
.page-contact__feedback-section img, 
.page-contact__faq-section img {
    min-width: 200px;
    min-height: 200px;
}