.page-contact {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-contact__hero-section {
    background-color: #f8f8f8;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2; /* Subtle background */
}

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

.page-contact__hero-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__hero-description {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 40px;
}

.page-contact__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-contact__button--register {
    background-color: #000000;
    color: #FFFFFF;
}

.page-contact__button--register:hover {
    background-color: #333333;
}

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

.page-contact__button--login:hover {
    background-color: #e0a030;
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

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

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

.page-contact__method-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
}

.page-contact__method-icon {
    width: 200px; /* Min size 200px */
    height: 133px; /* Keep aspect ratio for 600x400 source */
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
}

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

.page-contact__method-text {
    color: #666666;
    margin-bottom: 25px;
}

.page-contact__button--primary {
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    font-size: 1em;
}

.page-contact__button--primary:hover {
    background-color: #333333;
}

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-contact__faq-list {
    margin-top: 40px;
}

.page-contact__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FCBC45;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact__faq-answer {
    color: #666666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

.page-contact__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

.page-contact__faq-actions {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-contact__button--secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 25px;
    font-size: 1em;
}

.page-contact__button--secondary:hover {
    background-color: #f0f0f0;
}

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

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

.page-contact__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-contact__button--cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

.page-contact__button--cta:hover {
    background-color: #e0a030;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 3em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title, .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__method-icon {
        width: 200px;
        height: 133px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding: 60px 15px;
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__button {
        width: 100%;
        max-width: 300px;
    }
    .page-contact__info-section, .page-contact__faq-section, .page-contact__cta-section {
        padding: 40px 0;
    }
    .page-contact__container {
        padding: 0 15px;
    }
    .page-contact__section-title, .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__section-description, .page-contact__cta-description {
        font-size: 0.95em;
    }
    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-contact__method-icon {
        width: 200px; /* Ensure minimum size is maintained */
        height: 133px;
    }
    .page-contact__faq-question {
        font-size: 1.1em;
    }
    .page-contact__faq-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__faq-actions .page-contact__button {
        max-width: none;
    }
    .page-contact img { /* Global rule for content area images on mobile */
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-contact__section-title, .page-contact__cta-title {
        font-size: 1.5em;
    }
    .page-contact__method-title {
        font-size: 1.5em;
    }
    .page-contact__method-icon {
        width: 200px; /* Min size */
        height: 133px;
    }
}