body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }


.contact-hero {
     background: linear-gradient(rgba(1, 44, 74, 0.842), rgba(1, 44, 74, 0.842)), url('../images/Countries/footprint2.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    /* Update the contact grid to 4 columns */
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
    
    /* WhatsApp link style */
    .whatsapp-link {
        display: inline-block;
        background-color: var(--soft-green);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        margin-top: 15px;
        transition: background-color 0.3s;
    }
    
    .whatsapp-link:hover {
        background-color: #128C7E;
    }
    
    /* Update responsive grid */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
    }
    
    
    
    /* Adjust container padding */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    /* Add floating WhatsApp button */
    .floating-whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--soft-green);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: transform 0.3s;
    }
    
    .floating-whatsapp:hover {
        transform: scale(1.1);
    }
    
    .floating-whatsapp img {
        width: 35px;
        height: 35px;
    }
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    padding-bottom: 20px;
    color: var(--deep-blue);
    font-size: 60px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.contact-card:hover .contact-icon{
    transform: scale(1.2);
}
.contact-card h3 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: var(--deep-blue);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--deep-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--soft-green);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--deep-blue);
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 40px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--deep-blue);
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    color: var(--deep-blue);
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
}

.faq-icon {
    color: var(--deep-blue);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Business Hours Section */
.business-hours {
    padding: 80px 0;
}

.business-hours h2 {
    text-align: center;
    color: var(--deep-blue);
    margin-bottom: 40px;
    font-size: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: var(--deep-blue);
    font-weight: 600;
}

.time {
    color: #666;
}

.support-note {
    margin-top: 15px;
    color: var(--soft-green);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .faq-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .faq-item,
    .hours-card {
        padding: 20px;
    }

    .hours-list li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}