:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #002244;
    --border-color: #e0e0e0;
}

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

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

.page-contact h1, .page-contact h2, .page-contact h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-contact h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-contact h3 {
    font-size: 1.5em;
}

.page-contact p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.page-contact .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-dark);
    color: var(--text-light);
}

.page-contact .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-contact .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-contact .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-contact .hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-contact .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.page-contact .cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Info Section */
.page-contact .contact-info-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.page-contact .info-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-contact .info-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-contact .info-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-contact .info-card p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-contact .info-card a {
    font-weight: bold;
}

.page-contact .card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .card-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Form Section */
.page-contact .contact-form-section {
    padding: 60px 0;
    background-color: var(--text-light);
}

.page-contact .contact-form {
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="email"],
.page-contact .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.page-contact .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact .submit-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .submit-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-contact .faq-section h2 {
    color: var(--secondary-color);
}

.page-contact .faq-section p {
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-contact .faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.page-contact .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact .faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-contact .faq-question h3 {
    margin: 0;
    color: var(--text-light);
    font-size: 1.3em;
}

.page-contact .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.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;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
}

.page-contact .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px;
}

.page-contact .faq-answer p {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 15px;
}

.page-contact .faq-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
    margin-top: 10px;
}

.page-contact .faq-link:hover {
    color: var(--text-light);
}

/* Bottom CTA Section */
.page-contact .cta-bottom-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    text-align: center;
    color: var(--text-light);
}

.page-contact .cta-bottom-section h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
}

.page-contact .cta-bottom-section p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 20px auto 40px auto;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact h1 {
        font-size: 2.2em;
    }
    .page-contact h2 {
        font-size: 1.8em;
    }
    .page-contact .hero-content p {
        font-size: 1.1em;
    }
    .page-contact .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-contact .contact-form {
        padding: 30px;
    }
    .page-contact .faq-question h3 {
        font-size: 1.2em;
    }
    .page-contact .cta-bottom-section h2 {
        font-size: 2em;
    }
    .page-contact .cta-bottom-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-contact .hero-section {
        padding: 40px 15px;
    }
    .page-contact .hero-image img {
        border-radius: 4px;
    }
    .page-contact h1 {
        font-size: 1.8em;
    }
    .page-contact h2 {
        font-size: 1.6em;
    }
    .page-contact .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-contact .info-grid {
        grid-template-columns: 1fr;
    }
    .page-contact .info-card {
        padding: 25px;
    }
    .page-contact .contact-form {
        padding: 20px;
    }
    .page-contact .form-group label {
        font-size: 1em;
    }
    .page-contact .form-group input, .page-contact .form-group textarea {
        padding: 12px;
    }
    .page-contact .submit-button {
        padding: 15px;
        font-size: 1.1em;
    }
    .page-contact .faq-question {
        padding: 15px;
    }
    .page-contact .faq-question h3 {
        font-size: 1em;
    }
    .page-contact .faq-toggle {
        font-size: 20px;
    }
    .page-contact .faq-answer {
        padding: 15px;
    }
    .page-contact .cta-bottom-section {
        padding: 50px 15px;
    }
    .page-contact .cta-bottom-section h2 {
        font-size: 1.8em;
    }
    .page-contact .cta-bottom-section p {
        font-size: 1em;
    }
}