:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #222222;
    --border-color: #e0e0e0;
}

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

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

.page-contact section {
    padding: 60px 0;
    text-align: center;
}

.page-contact section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-contact .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact .section-description {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Banner */
.page-contact .hero-banner {
    position: relative;
    overflow: hidden;
    padding: 0; /* Remove padding as content is overlaid */
    background-color: var(--background-dark); /* Fallback */
}

.page-contact .hero-container {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact .hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-contact .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.page-contact .hero-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact .hero-subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color); /* Dark text on gold button */
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-contact .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Methods */
.page-contact .contact-methods {
    background-color: var(--background-light);
}

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

.page-contact .method-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-contact .method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact .method-icon {
    width: 150px; /* Ensure images are not small icons */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded corners for images */
}

.page-contact .method-card .card-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-contact .method-card p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1; /* Allow paragraph to take available space */
}

.page-contact .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-contact .btn-small:hover {
    background: #A50000; /* Slightly darker red */
    transform: translateY(-2px);
}

.page-contact .email-link,
.page-contact .phone-link,
.page-contact .social-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact .email-link:hover,
.page-contact .phone-link:hover,
.page-contact .social-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Form */
.page-contact .contact-form-section {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-contact .contact-form-section .section-title {
    color: var(--primary-color);
}

.page-contact .contact-form-section .section-description {
    color: var(--text-light);
}

.page-contact .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #3a3a3a; /* Darker background for form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

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

.page-contact .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="email"],
.page-contact .form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #444;
    color: var(--text-light);
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .form-group input[type="text"]::placeholder,
.page-contact .form-group input[type="email"]::placeholder,
.page-contact .form-group textarea::placeholder {
    color: #bbb;
}

.page-contact .form-group input[type="text"]:focus,
.page-contact .form-group input[type="email"]:focus,
.page-contact .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    outline: none;
}

.page-contact .submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color); /* Dark text on gold button */
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .submit-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Support Commitment */
.page-contact .support-commitment {
    background-color: var(--background-light);
}

.page-contact .commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact .commitment-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-contact .commitment-icon {
    width: 120px; /* Ensure images are not small icons */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact .commitment-item h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-contact .commitment-item p {
    font-size: 0.95em;
    color: var(--text-dark);
}

.page-contact .final-call-to-action {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 50px;
}

/* FAQ Section */
.page-contact .faq-section {
    padding: 60px 0;
    background-color: var(--background-dark);
}

.page-contact .faq-section .section-title {
    color: var(--primary-color);
}

.page-contact .faq-section .section-description {
    color: var(--text-light);
}

.page-contact .faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-contact .faq-item {
    margin-bottom: 15px;
    border: 1px solid #555; /* Darker border for contrast */
    border-radius: 8px;
    overflow: hidden;
}

.page-contact .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #3a3a3a; /* Darker background for question */
    color: var(--primary-color);
    border-bottom: 1px solid #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact .faq-question:hover {
    background: #444;
}

.page-contact .faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--primary-color); /* Ensure high contrast */
}

.page-contact .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1; /* Adjust for better alignment */
}

.page-contact .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-contact .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #2e2e2e; /* Even darker background for answer */
    color: var(--text-light);
    text-align: left;
    padding: 0 25px; /* Initial padding */
    border-radius: 0 0 8px 8px;
}

.page-contact .faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-light); /* Ensure high contrast */
}

.page-contact .faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-contact .faq-answer a:hover {
    color: #FFC107;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-contact .hero-title {
        font-size: 2.8em;
    }
    .page-contact .hero-subtitle {
        font-size: 1.1em;
    }
    .page-contact .section-title {
        font-size: 2em;
    }
    .page-contact .method-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-contact .commitment-points {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-contact section {
        padding: 40px 0;
    }
    .page-contact .hero-container {
        height: 400px;
    }
    .page-contact .hero-title {
        font-size: 2.2em;
    }
    .page-contact .hero-subtitle {
        font-size: 1em;
    }
    .page-contact .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-contact .section-title {
        font-size: 1.8em;
    }
    .page-contact .section-description {
        font-size: 0.95em;
    }
    .page-contact .method-grid {
        grid-template-columns: 1fr;
    }
    .page-contact .method-card {
        padding: 25px;
    }
    .page-contact .method-icon {
        width: 100px;
        height: 100px;
    }
    .page-contact .contact-form {
        padding: 30px;
    }
    .page-contact .form-group input,
    .page-contact .form-group textarea {
        width: calc(100% - 20px);
        padding: 10px;
    }
    .page-contact .submit-button {
        padding: 12px;
        font-size: 1em;
    }
    .page-contact .commitment-points {
        grid-template-columns: 1fr;
    }
    .page-contact .commitment-icon {
        width: 100px;
        height: 100px;
    }
    .page-contact .faq-question {
        padding: 15px 20px;
    }
    .page-contact .faq-question h3 {
        font-size: 1em;
    }
    .page-contact .faq-toggle {
        font-size: 20px;
    }
    .page-contact .faq-answer {
        padding: 0 20px;
    }
    .page-contact .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-contact .hero-container {
        height: 350px;
    }
    .page-contact .hero-title {
        font-size: 1.8em;
    }
    .page-contact .hero-subtitle {
        font-size: 0.9em;
    }
    .page-contact .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-contact .section-title {
        font-size: 1.6em;
    }
    .page-contact .section-description {
        font-size: 0.85em;
    }
    .page-contact .method-card,
    .page-contact .commitment-item {
        padding: 20px;
    }
    .page-contact .contact-form {
        padding: 20px;
    }
    .page-contact .faq-question h3 {
        font-size: 0.9em;
    }
    .page-contact .faq-toggle {
        font-size: 18px;
    }
}