.contact-section {
    padding: 3rem 0;
    background-color: var(--card-bg);
    height: auto;
    font-size: 16px;
}


.contact-section .breadcrumbs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    width: max-content;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.contact-section .breadcrumbs a,
.contact-section .breadcrumbs span {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.8rem;
}

.contact-section .breadcrumbs a:hover {
    color: var(--primary-color);
}

.contact-section .breadcrumbs span {
    font-weight: 600;
}

.contact-section .breadcrumbs i {
    color: var(--text-dark-low);
    font-size: 0.7rem;
}

.contact-section .contact-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-section .contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-section .contact-hero h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contact-section .contact-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-section .contact-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .contact-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
}

.contact-section .contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: start;
}

.contact-section .contact-card .info-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.7rem;
}

.contact-section .contact-card .info-item i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.contact-section .contact-card .info-item p,
.contact-section .contact-card .info-item a {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark-low);
    text-decoration: none;
}

.contact-section .contact-card .info-item a:hover {
    color: var(--primary-color);
}

.contact-section .offices {
    margin-bottom: 3.5rem;
}

.contact-section .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-section .office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-section .office-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.contact-section .office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .office-card .flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    margin-right: 0.5rem;
    vertical-align: middle;
    object-fit: cover;
    margin-bottom: 0.3rem;
}

.contact-section .office-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: inline-block;
}

.contact-section .office-card .address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin-bottom: 1rem;
}

.contact-section .office-card .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-section .office-card .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark-low);
    text-decoration: none;
}

.contact-section .office-card .contact-link i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.contact-section .office-card .contact-link:hover {
    color: var(--primary-color);
}

.contact-section .departments {
    margin-bottom: 3.5rem;
}

.contact-section .department-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-section .department-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-section .department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .department-card .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-section .department-card .content {
    flex: 1;
}

.contact-section .department-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.contact-section .department-card .description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin-bottom: 0.8rem;
}

.contact-section .department-card .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark-low);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-section .department-card .contact-link i {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.contact-section .department-card .contact-link:hover {
    color: var(--primary-color);
}

.contact-section .map-section {
    margin-bottom: 3.5rem;
}

.contact-section .map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-section .contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .form-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section .form-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-section .form-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin-bottom: 1.5rem;
}

.contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-section .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
    padding: 0.8rem;
    border: 1px solid var(--bg-color-dark);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus,
.contact-section .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color-low);
}

.contact-section .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section .submit-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(252, 80, 33, 0.2);
}

.contact-section .submit-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(252, 80, 33, 0.3);
}

.contact-section .faq-section {
    margin-bottom: 2.5rem;
}

.contact-section .faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-section .faq-item {
    border: 1px solid var(--bg-color-dark);
    border-radius: 8px;
    overflow: hidden;
}

.contact-section .faq-question {
    padding: 1rem 1.5rem;
    background-color: var(--bg-color);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-section .faq-question:hover {
    background-color: var(--bg-color-dark);
}

.contact-section .faq-question i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-section .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-section .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-section .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 300px;
}

.contact-section .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark-low);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-section .contact-hero {
        margin-bottom: 2.5rem;
    }
    
    .contact-section .contact-info,
    .contact-section .office-grid,
    .contact-section .department-grid {
        gap: 1.5rem;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }
    
    .contact-section .contact-form-section {
        gap: 2.5rem;
        padding: 1.8rem;
    }
    
    .contact-section .map-container {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 2rem 0;
        font-size: 15px;
    }
    
    .contact-section .contact-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-section .contact-hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .contact-section .contact-info,
    .contact-section .office-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 3rem;
    }
    
    .contact-section .contact-card {
        padding: 1.5rem;
    }
    
    .contact-section .contact-card .icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-section .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-section .department-grid,
    .contact-section .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .contact-section .form-info {
        margin-bottom: 1.5rem;
    }
    
    .contact-section .office-card {
        padding: 1.5rem;
    }
    
    .contact-section .department-card {
        padding: 1.2rem;
        gap: 1.2rem;
    }
    
    .contact-section .department-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .contact-section .map-container {
        height: 350px;
    }
    
    .contact-section .offices,
    .contact-section .departments,
    .contact-section .map-section,
    .contact-section .contact-form-section {
        margin-bottom: 3rem;
    }
    
    .contact-section .form-info h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 1.8rem 0;
    }
    
    .contact-section .breadcrumbs {
        margin-bottom: 1.2rem;
    }
    
    .contact-section .contact-hero {
        margin-bottom: 2rem;
        padding-bottom: 1.2rem;
    }
    
    .contact-section .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-section .contact-info,
    .contact-section .office-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2.5rem;
        gap: 1.2rem;
    }
    
    .contact-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-section .contact-card,
    .contact-section .office-card,
    .contact-section .department-card {
        padding: 1.2rem;
    }
    
    .contact-section .department-grid {
        gap: 1.2rem;
    }
    
    .contact-section .contact-form-section {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-section .map-container {
        height: 300px;
    }
    
    /* Disable hover effects on mobile */
    .contact-section .contact-card:hover,
    .contact-section .office-card:hover,
    .contact-section .department-card:hover {
        transform: none;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 1.5rem 0;
        font-size: 14px;
    }
    
    .contact-section .contact-hero h1 {
        font-size: 1.6rem;
    }
    
    .contact-section .contact-hero p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.3rem;
        padding-bottom: 0.6rem;
    }
    
    .contact-section .section-title::after {
        width: 35px;
        height: 2px;
    }
    
    .contact-section .contact-card .icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-section .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-section .contact-card .info-item p,
    .contact-section .contact-card .info-item a,
    .contact-section .office-card .address,
    .contact-section .office-card .contact-link {
        font-size: 0.85rem;
    }
    
    .contact-section .department-card .icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-section .department-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-section .department-card .description,
    .contact-section .department-card .contact-link {
        font-size: 0.8rem;
    }
    
    .contact-section .form-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-section .form-info p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .contact-section .form-group label {
        font-size: 0.8rem;
    }
    
    .contact-section .form-group input,
    .contact-section .form-group textarea,
    .contact-section .form-group select {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .contact-section .form-group textarea {
        min-height: 100px;
    }
    
    .contact-section .submit-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .contact-section .faq-question {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-section .faq-item.active .faq-answer {
        padding: 0.8rem 1.2rem;
    }
    
    .contact-section .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .contact-section {
        padding: 1.2rem 0;
    }
    
    .contact-section .contact-hero {
        margin-bottom: 1.8rem;
        padding-bottom: 1rem;
    }
    
    .contact-section .contact-hero h1 {
        font-size: 1.5rem;
    }
    
    .contact-section .contact-hero::after {
        width: 40px;
    }
    
    .contact-section .contact-card,
    .contact-section .office-card,
    .contact-section .department-card {
        padding: 1rem;
    }
    
    .contact-section .contact-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .contact-section .department-card {
        gap: 0.8rem;
    }
    
    .contact-section .department-card .icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .contact-section .map-container {
        height: 250px;
    }
    
    .contact-section .contact-form-section {
        padding: 1.2rem;
    }
}
