.page-contact {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-contact__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

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

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* Default aspect ratio */
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

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

.page-contact__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Adjusted clamp for H1 */
    font-weight: bold;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-contact__description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for contrast on bright button */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    min-width: 200px; /* Ensure button is not too small */
}

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

/* Sections */
.page-contact__methods-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__cta-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border */
}

.page-contact__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #F2C14E; /* Main Color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

/* Contact Methods Grid */
.page-contact__methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.page-contact__method-card {
    background-color: #0A0A0A; /* Background for cards */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-contact__method-title {
    font-size: 1.5rem;
    color: #FFD36B; /* Auxiliary Color */
    margin-bottom: 10px;
}

.page-contact__method-description {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 20px;
}

.page-contact__method-link {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.page-contact__method-link:hover {
    background: linear-gradient(180deg, #FFE699 0%, #E6B040 100%);
}

.page-contact__methods-illustration {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.page-contact__methods-image {
    width: 100%;
    max-width: 800px; /* Adjust max-width as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    min-width: 200px;
    min-height: 200px;
}

/* Contact Form Section */
.page-contact__form-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    gap: 30px;
    align-items: center;
    text-align: center;
}

.page-contact__form-content {
    flex: 1;
    max-width: 600px;
}

.page-contact__form-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.page-contact__form-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    min-width: 200px;
    min-height: 200px;
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    text-align: left;
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
}

.page-contact__form-label {
    font-size: 1rem;
    color: #FFD36B;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    padding: 12px;
    border: 1px solid #3A2A12;
    border-radius: 5px;
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

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

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

.page-contact__submit-button {
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: center; /* Center the button */
    min-width: 180px;
}

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

/* FAQ Section */
.page-contact__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-contact__faq-item {
    background-color: #0A0A0A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
}

.page-contact__faq-question {
    font-size: 1.2rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
}

/* Final CTA Section */
.page-contact__cta-section {
    text-align: center;
    margin-bottom: 60px; /* More space at the bottom */
}

.page-contact__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2rem;
    min-width: 250px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-contact__hero-section {
        flex-direction: column; /* Keep column for hero for consistent top-down flow */
        padding-top: 40px;
    }

    .page-contact__hero-image-wrapper {
        margin-bottom: 30px;
    }

    .page-contact__hero-image {
        aspect-ratio: 16/7; /* Wider aspect ratio for desktop hero */
    }

    .page-contact__methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-contact__form-section {
        flex-direction: row; /* Row for desktop form */
        text-align: left;
    }

    .page-contact__form-content {
        order: 1; /* Form content first */
    }

    .page-contact__form-image-wrapper {
        order: 2; /* Image second */
        text-align: right;
    }

    .page-contact__faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile specific rules for images (mandatory) */
@media (max-width: 768px) {
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}