:root {
    --primary: #0dcaf0;
    --primary-dark: #0aa5c5;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
}


.faq-section {
    background: linear-gradient(to bottom, #f9fdff, #fff);
    padding: 5rem 0;
}

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}



.display-5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    color: var(--dark);
    background-color: rgba(13, 202, 240, 0.05);
    border: 1px solid rgba(13, 202, 240, 0.15);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: rgba(13, 202, 240, 0.1);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    border-left: 1px solid rgba(13, 202, 240, 0.15);
    border-right: 1px solid rgba(13, 202, 240, 0.15);
    border-bottom: 1px solid rgba(13, 202, 240, 0.15);
}

.location-reference {
    color: var(--primary-dark);
    font-weight: 600;
    font-style: italic;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230dcaf0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230dcaf0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.info-card {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.05) 100%);
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    height: 100%;
}

.contact-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}




.service-area-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, #f9fdff);
}

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}



.display-5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.service-card-body {
    padding: 2rem;
}

.location-list {
    columns: 2;
    column-gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.location-list li {
    list-style: none;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    break-inside: avoid;
}

.location-list li:before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.service-description {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.05) 100%);
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    height: 100%;
}

.highlight {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
}

@media (max-width: 992px) {
    .location-list {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
}




.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, #f9fdff);
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-card-body {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: rgba(13, 202, 240, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.contact-details p {
    margin-bottom: 0;
    color: var(--secondary);
}

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

.contact-details a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
