.page-contact {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding-top: 10px; /* Small top padding for first section */
}

.page-contact__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-contact__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-contact__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #F2C14E, #FFD36B); /* Text gradient for H1 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers not supporting text-fill-color */
}

.page-contact__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-contact__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Changed to dark text for contrast on yellow button */
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3);
}

.page-contact__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.5);
}

.page-contact__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #F2C14E, #FFD36B); /* Text gradient for H2 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
    padding-top: 40px;
}

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

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

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

.page-contact__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-contact__info-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 250px; /* Max width for image within card */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
}

.page-contact__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2C14E;
}

.page-contact__card-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.8;
}

.page-contact__card-link {
    color: #FFD36B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

.page-contact__form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-contact__form-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-contact__contact-form {
    background-color: #111111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
}

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

.page-contact__form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #FFF6D6;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 5px;
    color: #FFF6D6;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD36B;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 211, 107, 0.3);
}

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Changed to dark text for contrast on yellow button */
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3);
}

.page-contact__submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.5);
}

.page-contact__faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}

.page-contact__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__faq-item {
    background-color: #111111;
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid #3A2A12;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-contact__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for accordion */
    position: relative;
    padding-right: 30px; /* Space for arrow icon */
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation needed for minus */
}

.page-contact__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
    opacity: 0.8;
    display: none; /* Hidden by default for accordion */
    padding-top: 10px;
}

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

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-contact__hero-section {
        padding: 30px 15px;
        gap: 15px;
    }

    .page-contact__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

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

    .page-contact__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-contact__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-contact__info-card {
        padding: 25px;
    }

    .page-contact__form-section {
        padding: 30px 15px;
    }

    .page-contact__contact-form {
        padding: 30px;
    }

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

    .page-contact__faq-section {
        padding: 30px 15px 60px 15px;
    }

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

@media (max-width: 768px) {
    .page-contact img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Ensure no content images are smaller than 200px on content area selectors */
.page-contact img {
    min-width: 200px;
    min-height: 200px;
}
.page-contact__info-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
}