      
        
        
      
        
        .accordion-button {
            font-weight: 600;
            padding: 1.2rem 1.25rem;
            font-size: 1.1rem;
            color: var(--dark);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        .accordion-body {
            padding: 1.5rem;
            background-color: white;
        }
        
     
        .contact-info {
            background: linear-gradient(to right, #E41779, #E41779);
            color: white;
            border-radius: 8px;
            padding: 2rem;
            margin-top: 2rem;
        }



     
       
        .service-list {
            list-style-type: none;
            padding: 0;
            column-count: 3;
            column-gap: 20px;
        }
        
        @media (max-width: 992px) {
            .service-list {
                column-count: 2;
            }
        }
        
        @media (max-width: 576px) {
            .service-list {
                column-count: 1;
            }
        }
        
        .service-list li {
            padding: 8px 0;
            position: relative;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        
        .service-list li:before {
            content: "\f641";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .service-area-img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .service-area-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .coverage-note {
            background-color: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin-top: 30px;
            border-radius: 4px;
        }



        
    .contact-section {
        padding: 5rem 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 100vh;
        background: #343a40;
    }

    .contact-card {
        background: #343a40;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        padding: 3rem 2.5rem;
        width: 100%;
        max-width: 950px;
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .title-center h5 {
        color: var(--primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .title-center h1 {
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--dark);
    }

    .title-center p {
        margin-bottom: 2rem;
        color: var(--secondary);
    }

    .contact-info {
        margin: 0 0 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
        background: #343a40;
        padding: 1.25rem 1rem;
        border-radius: 10px;
        transition: box-shadow 0.3s;
    }

    .contact-item:hover {
        box-shadow: 0 2px 12px rgba(228, 23, 121, 0.08);
        background-color: #343a40;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        flex-shrink: 0;
        margin-bottom: 0;
    }

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

    .contact-details p {
        margin-bottom: 0.25rem;
        color: var(--secondary);
        font-size: 1rem;
    }

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

    .contact-details a:hover {
        color: #E41779;
        text-decoration: underline;
    }

    .business-hours {
        background-color: var(--light);
        padding: 1.5rem 1.25rem;
        border-radius: 10px;
        margin-top: 0;
    }

    .business-hours h4 {
        color: var(--primary);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .hours-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #dee2e6;
        font-size: 1rem;
    }

    .hours-list li:last-child {
        border-bottom: none;
    }

    @media (max-width: 992px) {
        .contact-card {
            flex-direction: column;
            gap: 2rem;
            padding: 2rem 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .contact-section {
            padding: 2rem 0;
        }

        .contact-card {
            padding: 1rem 0.5rem;
        }

        .contact-item {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .business-hours {
            padding: 1rem 0.5rem;
        }
    }
