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

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

.page-contact__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure hero section has a decent height */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-contact__hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF; /* White text for hero overlay */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for emphasis */
}

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

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

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-contact__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Dark text for white button */
    border: 2px solid #FFFFFF;
}

.page-contact__button--register:hover {
    background-color: #FCBC45; /* Hover to login button color */
    color: #000000;
    border-color: #FCBC45;
}

.page-contact__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for yellowish button */
    border: 2px solid #FCBC45;
}

.page-contact__button--login:hover {
    background-color: #FFFFFF; /* Hover to register button color */
    color: #000000;
    border-color: #FFFFFF;
}

.page-contact__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #000000; /* Primary color for titles */
    font-weight: bold;
}

.page-contact__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #333333;
}

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__social-media-section,
.page-contact__why-contact-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Default background for sections */
}

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

.page-contact__method-card {
    background-color: #000000; /* Dark card background */
    color: #FFFFFF; /* White text for dark card */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-icon {
    width: 200px; /* Minimum size for content images */
    height: 150px; /* Minimum size for content images */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-contact__method-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FCBC45; /* Accent color for titles */
}

.page-contact__method-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__email-link,
.page-contact__phone-link {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-contact__email-link:hover,
.page-contact__phone-link:hover {
    text-decoration: underline;
}

.page-contact__button--chat,
.page-contact__button--email,
.page-contact__button--phone {
    background-color: #FCBC45; /* Accent color for action buttons */
    color: #000000; /* Dark text for accent button */
    border: 2px solid #FCBC45;
}

.page-contact__button--chat:hover,
.page-contact__button--email:hover,
.page-contact__button--phone:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

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

.page-contact__faq-item {
    background-color: #F8F8F8; /* Light background for FAQ items */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #000000; /* Dark text for questions */
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate clickability */
}

.page-contact__faq-question--active {
    color: #FCBC45;
}

.page-contact__faq-answer {
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
    display: none; /* Hidden by default for accordion */
}

.page-contact__faq-link {
    color: #FCBC45; /* Accent color for FAQ links */
    text-decoration: none;
    font-weight: bold;
}

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

.page-contact__faq-more {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #333333;
}

.page-contact__social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.page-contact__social-link {
    display: block;
    transition: transform 0.3s ease;
}

.page-contact__social-link:hover {
    transform: translateY(-5px);
}

.page-contact__social-icon {
    width: 200px; /* Minimum size for content images */
    height: 200px; /* Minimum size for content images */
    object-fit: contain;
    border-radius: 50%; /* Make them circular */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__value-card {
    background-color: #000000; /* Dark card background */
    color: #FFFFFF; /* White text for dark card */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__value-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FCBC45; /* Accent color for titles */
    font-weight: bold;
}

.page-contact__value-description {
    font-size: 1em;
    line-height: 1.6;
}

.page-contact__closing-statement {
    font-size: 1.2em;
    text-align: center;
    margin-top: 60px;
    font-style: italic;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

    .page-contact__hero-overlay {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px);
    }

    .page-contact__hero-title {
        font-size: 2.2em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact__button {
        width: 100%;
        padding: 12px 20px;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-contact__methods-section,
    .page-contact__faq-section,
    .page-contact__social-media-section,
    .page-contact__why-contact-section {
        padding: 60px 0;
    }

    .page-contact__method-card,
    .page-contact__value-card {
        padding: 25px;
    }

    .page-contact__method-title {
        font-size: 1.5em;
    }

    .page-contact__faq-question {
        font-size: 1.1em;
    }

    .page-contact__social-icons {
        flex-wrap: wrap;
    }

    /* Ensure content images are never smaller than 200px, but responsive */
    .page-contact__method-icon,
    .page-contact__social-icon {
        min-width: 200px; /* Maintain minimum width */
        min-height: 150px; /* Maintain minimum height */
        width: auto; /* Allow natural scaling */
        height: auto;
        max-width: 100%; /* Ensure they don't overflow */
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }

    .page-contact__hero-overlay {
        padding: 25px;
    }

    .page-contact__section-title {
        font-size: 1.5em;
    }

    .page-contact__method-icon,
    .page-contact__social-icon {
        min-width: 180px; /* Slightly reduce min-width for very small screens if necessary, but still large */
        min-height: 130px;
    }
}