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

.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px;
    object-fit: cover;
}

.page-contact__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-contact__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFF6D6; /* Text Main */
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-contact__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
    opacity: 0.9;
}

.page-contact__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Contrast text for button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B; /* Glow */
}

.page-contact__methods-section,
.page-contact__form-section,
.page-contact__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
}

.page-contact__methods-title,
.page-contact__form-title,
.page-contact__faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E; /* Main color */
    line-height: 1.3;
}

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

.page-contact__method-card {
    background-color: #0A0A0A; /* Background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12; /* Border */
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 10px #FFD36B; /* Glow */
}

.page-contact__method-icon {
    width: 100%; /* Make icon responsive within card */
    max-width: 200px; /* Ensure min size requirement is met if scaled */
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 150px; /* Adjust height to fit common aspect ratios, ensure >200px */
    border-radius: 8px;
    object-fit: cover;
}

.page-contact__method-heading {
    font-size: 1.8rem;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 15px;
}

.page-contact__method-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF6D6; /* Text Main */
    opacity: 0.8;
    margin-bottom: 25px;
}

.page-contact__method-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Contrast text for button */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-contact__method-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px #FFD36B; /* Glow */
}

.page-contact__form-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.page-contact__form-image-wrapper {
    flex: 1 1 400px; /* Allow image to grow/shrink, min width 400px */
    text-align: center;
}

.page-contact__form-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Max width for form image */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-contact__form {
    flex: 1 1 450px; /* Allow form to grow/shrink, min width 450px */
    background-color: #0A0A0A; /* Background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFD36B; /* Auxiliary color */
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #3A2A12; /* Border */
    border-radius: 6px;
    background-color: #111111; /* Card BG */
    color: #FFF6D6; /* Text Main */
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: rgba(255, 246, 214, 0.6); /* Lighter placeholder */
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #F2C14E; /* Main color */
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.3);
}

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

.page-contact__form-submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Contrast text for button */
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B; /* Glow */
}

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

.page-contact__faq-item {
    background-color: #0A0A0A; /* Background */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
    width: 100%;
    background-color: #111111; /* Card BG */
    color: #F2C14E; /* Main color */
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active {
    background-color: #0A0A0A; /* Background */
}

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

.page-contact__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #FFF6D6; /* Text Main */
    opacity: 0.8;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
}

.page-contact__faq-answer p {
    margin: 0;
    line-height: 1.6;
}

.page-contact__faq-answer a {
    color: #FFD36B; /* Auxiliary color for links in answer */
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    .page-contact__hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-contact__hero-description {
        font-size: 1rem;
    }
    .page-contact__hero-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-contact__methods-section,
    .page-contact__form-section,
    .page-contact__faq-section {
        padding: 40px 15px;
        margin-bottom: 30px;
    }

    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

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

    .page-contact__form-container {
        flex-direction: column;
        gap: 30px;
    }

    .page-contact__form-image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-contact__form {
        flex: none;
        width: 100%;
        padding: 25px;
    }

    .page-contact__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    /* Mobile image overflow protection */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px on display */
    .page-contact__method-icon,
    .page-contact__form-image {
        min-width: 200px;
        min-height: 200px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: clamp(1.2rem, 6vw, 1.7rem);
    }
    .page-contact__methods-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 1.5rem;
    }
}