.page-contact-us {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-contact-us__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 40px 0; /* Small top padding, larger bottom padding */
    text-align: center;
    overflow: hidden; /* Ensure no overflow from hero image */
}

.page-contact-us__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-contact-us__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-contact-us__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    line-height: 1.2;
    color: #F2C14E;
    margin: 0;
    max-width: 100%;
}

.page-contact-us__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
}

.page-contact-us__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-contact-us__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-contact-us__contact-options,
.page-contact-us__faq-section,
.page-contact-us__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-contact-us__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.page-contact-us__option-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

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

.page-contact-us__option-icon {
    width: 250px; /* Minimum 200x200 */
    height: 187px; /* Maintain aspect ratio for 4:3, or set to auto if image is flexible */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100%;
}

.page-contact-us__option-title {
    font-size: 1.6em;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-contact-us__option-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-contact-us__option-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-contact-us__option-button:hover {
    opacity: 0.9;
}

.page-contact-us__faq-accordion {
    margin-top: 30px;
}

.page-contact-us__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact-us__faq-question {
    font-size: 1.3em;
    color: #FFF6D6;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-contact-us__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1);
}

.page-contact-us__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-contact-us__faq-item.active .page-contact-us__faq-question::after {
    transform: rotate(45deg);
}

.page-contact-us__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-contact-us__faq-item.active .page-contact-us__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding: 15px 25px 20px 25px;
}

.page-contact-us__faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-contact-us__faq-link {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
}

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

.page-contact-us__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-contact-us__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__cta-button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-contact-us__cta-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-contact-us__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #F2C14E;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-contact-us__cta-button--secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(242, 193, 78, 0.1);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

@media (max-width: 768px) {
    .page-contact-us__hero-title {
        font-size: 2.2em;
    }

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

    .page-contact-us__options-grid {
        grid-template-columns: 1fr;
    }

    .page-contact-us__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact-us__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Mobile image constraint */
    .page-contact-us__hero-image,
    .page-contact-us__option-icon,
    .page-contact-us__faq-answer img { /* If any img in faq answer */
        max-width: 100% !important;
        height: auto !important;
    }
}