:root {
    --page-contact-primary-color: #1A237E; /* Dark Indigo */
    --page-contact-accent-color: #FFD700; /* Bright Gold */
    --page-contact-text-light: #FFFFFF;
    --page-contact-text-dark: #1A237E; /* Using primary color for dark text on light backgrounds */
    --page-contact-bg-light: #F8F8F8; /* Light gray for sections */
    --page-contact-bg-dark: #1A237E; /* Primary color for dark backgrounds */
    --page-contact-border-color: #e0e0e0;
}

.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-contact-text-dark); /* Default text color for light sections */
}

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

/* Hero Section */
.page-contact__hero {
    position: relative;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--page-contact-text-light);
    text-align: center;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(255, 215, 0, 0.4)); /* Blend primary and accent */
    z-index: 2;
}

.page-contact__hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 800px;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--page-contact-text-light); /* White text on dark overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.2em;
    color: var(--page-contact-text-light); /* White text on dark overlay */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-contact__info-section,
.page-contact__faq-section {
    padding: 60px 0;
    background-color: var(--page-contact-bg-light); /* Light background for content sections */
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: var(--page-contact-bg-dark); /* Dark background for the form */
    color: var(--page-contact-text-light);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: var(--page-contact-text-dark);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.page-contact__info-section .page-contact__section-title,
.page-contact__faq-section .page-contact__section-title {
    color: var(--page-contact-primary-color); /* Dark indigo for titles on light background */
}
.page-contact__form-section .page-contact__section-title {
    color: var(--page-contact-accent-color); /* Gold for title on dark background */
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-contact-accent-color); /* Gold accent line */
    border-radius: 2px;
}

.page-contact__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555; /* Slightly darker grey for intro text on light background */
}
.page-contact__form-section .page-contact__section-intro {
    color: var(--page-contact-text-light); /* White text on dark background */
}


/* Contact Methods */
.page-contact__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__method-card {
    background-color: var(--page-contact-text-light); /* White card background */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-contact-accent-color); /* Gold top border */
}

.page-contact__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__method-title {
    font-size: 1.8em;
    color: var(--page-contact-primary-color);
    margin-bottom: 15px;
}

.page-contact__method-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

/* Buttons */
.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-contact__btn--primary {
    background-color: var(--page-contact-accent-color); /* Gold background */
    color: var(--page-contact-primary-color); /* Dark indigo text */
}

.page-contact__btn--primary:hover {
    background-color: #e6c000; /* Slightly darker gold */
    color: var(--page-contact-primary-color);
}

.page-contact__btn--secondary {
    background-color: var(--page-contact-primary-color); /* Dark indigo background */
    color: var(--page-contact-accent-color); /* Gold text */
    border: 1px solid var(--page-contact-accent-color);
}

.page-contact__btn--secondary:hover {
    background-color: #0d1257; /* Slightly darker indigo */
    color: var(--page-contact-accent-color);
}

.page-contact__btn--submit {
    background-color: var(--page-contact-accent-color); /* Gold background */
    color: var(--page-contact-primary-color); /* Dark indigo text */
    width: 100%;
    font-size: 1.1em;
    padding: 15px;
    margin-top: 20px;
}

.page-contact__btn--submit:hover {
    background-color: #e6c000;
}

/* Contact Form */
.page-contact__contact-form {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background-color: var(--page-contact-bg-dark); /* Dark background for the form itself, text is light */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-contact-accent-color);
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--page-contact-text-light); /* White label text */
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px 10px;
    border: 1px solid var(--page-contact-accent-color); /* Gold border */
    border-radius: 5px;
    background-color: #2a348e; /* Slightly lighter indigo for input fields */
    color: var(--page-contact-text-light); /* White input text */
    font-size: 1em;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: var(--page-contact-accent-color);
    outline: none;
    background-color: #3f4a9e; /* Even lighter indigo on focus */
}

/* FAQ Section */
.page-contact__faq-item {
    background-color: var(--page-contact-text-light); /* White background for FAQ items */
    border: 1px solid var(--page-contact-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: var(--page-contact-primary-color);
    margin-bottom: 10px;
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero {
        height: 300px;
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }

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

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

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

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

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__btn {
        width: 100%;
        box-sizing: border-box;
    }
}