.page-contact {
    background-color: #100224; /* Dark background, similar to WOW88 style */
    color: #FFFFFF; /* White text for contrast */
    font-family: 'Roboto', sans-serif; /* Roboto-like font */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile-first "image above text" */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background-color: #100224; /* Consistent background */
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image wrapper */
    margin-bottom: 20px;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* Slightly rounded corners */
}

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

.page-contact__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #26A9E0; /* Main brand color for H1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for readability */
}

.page-contact__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for description */
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login/Contact button color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Ensure sufficient size for CTA */
    text-align: center;
}

.page-contact__cta-button:hover {
    background-color: #FF8C00; /* Slightly lighter orange on hover */
}

/* Section Titles */
.page-contact__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #26A9E0; /* Main brand color */
    padding-top: 40px;
}

.page-contact__section-intro {
    font-size: 1.05rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

/* Contact Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #1a0631; /* Slightly lighter dark background for contrast */
}

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

.page-contact__method-card {
    background-color: #2a0a4d; /* Darker card background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-card:hover {
    transform: translateY(-8px);
}

.page-contact__method-icon {
    width: 200px; /* Ensure min 200px for all images */
    height: 150px; /* Maintain aspect ratio, but ensure min width/height */
    object-fit: contain; /* Contain to show full icon */
    margin-bottom: 20px;
    filter: none; /* No CSS filter */
}

.page-contact__method-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-contact__method-description {
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow description to take available space */
    color: #CCCCCC;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #EA7C07;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure sufficient size */
    text-align: center;
}

.page-contact__method-button:hover {
    background-color: #FF8C00;
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #100224;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #2a0a4d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__form-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #3a1a5d;
    color: #FFFFFF;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #AAA;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #26A9E0;
    outline: none;
}

.page-contact__submit-button {
    display: block;
    width: 100%;
    background-color: #26A9E0; /* Main brand color for submit */
    color: #FFFFFF;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #1E8BC3;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: #1a0631;
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__faq-item {
    background-color: #2a0a4d;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
}

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

.page-contact__faq-answer a {
    color: #EA7C07; /* Link color within FAQ */
    text-decoration: none;
}

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

/* Other Methods Section (Social Links) */
.page-contact__other-methods-section {
    padding: 60px 0 80px 0;
    background-color: #100224;
}

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

.page-contact__social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__social-link img {
    width: 200px; /* Enforce minimum size for social images */
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 12px; /* Soften edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    filter: none; /* No CSS filter */
}


/* Responsive adjustments */
@media (min-width: 769px) {
    .page-contact__hero-section {
        flex-direction: row; /* Desktop: image and content side-by-side or stacked logically */
        text-align: left;
        padding-top: 40px;
        justify-content: space-between;
        gap: 40px;
    }

    .page-contact__hero-image-wrapper {
        flex: 1;
        margin-bottom: 0;
    }

    .page-contact__hero-content {
        flex: 1;
        padding: 0;
    }

    .page-contact__main-title {
        text-align: left;
    }

    .page-contact__hero-description {
        text-align: left;
    }

    .page-contact__cta-button {
        margin-left: 0;
    }

    .page-contact__method-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-contact__container {
        padding: 15px;
    }

    .page-contact__hero-section {
        padding-bottom: 30px;
    }

    .page-contact__hero-image {
        aspect-ratio: 16/9; /* Better aspect ratio for mobile hero */
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    .page-contact__hero-content {
        padding: 0 15px;
    }

    .page-contact__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust clamp for smaller screens */
    }

    .page-contact__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-contact__contact-methods {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
    }

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

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

    .page-contact__social-link img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure all images within .page-contact are responsive and don't overflow */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__cta-button,
    .page-contact__method-button,
    .page-contact__submit-button {
        min-width: unset; /* Remove min-width on very small screens */
        width: 100%;
    }
}