/* ===== Extracted Style Block 1 ===== */
/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.whatsapp-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #25D366;
}

.whatsapp-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-header-text p {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-body {
    padding: 20px;
    background: #ECE5DD;
}

.whatsapp-message {
    background: white;
    padding: 12px 15px;
    border-radius: 10px 10px 10px 0;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message:before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent white transparent;
}

.whatsapp-time {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 5px;
}

.whatsapp-action {
    text-align: center;
}

.whatsapp-action a {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.whatsapp-action a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-popup {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --teal: #21878B;
            --gold: #DDA144;
            --black: #222;
            --white: #FFF;
            --light-gray: #f8f9fa;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--black);
            line-height: 1.7;
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--teal);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9em;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
        }
        
        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        
        .top-bar-left, .top-bar-right {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .top-bar a {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        
        .top-bar a:hover {
            color: var(--gold);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            font-size: 1.1em;
        }
        
        /* Navigation */
        nav {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(33,135,139,0.1);
            position: fixed;
            top: 45px;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo img {
            height: 80px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }
        
        .nav-menu > li {
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--teal);
            font-weight: 600;
            font-size: 0.95em;
            transition: color 0.3s;
            padding: 10px 5px;
            display: block;
        }
        
        .nav-menu a:hover {
            color: var(--gold);
        }
        
        /* Dropdown */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 5px;
            top: 100%;
            left: 0;
        }
        
        .dropdown-content a {
            padding: 12px 20px;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            color: var(--teal) !important;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--teal);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
.hero { background-image: url('../images/hero.jpg'); }
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-top: 0;
            padding-top: 155px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        
        .hero .tagline {
            font-size: 1.8em;
            margin-bottom: 40px;
            font-weight: 400;
            color: var(--white);
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }
        
        .cta-btn {
            background: var(--gold);
            color: var(--white);
            padding: 20px 50px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            background: var(--teal);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: var(--white);
            margin: 5% auto;
            padding: 0;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            animation: slideDown 0.3s;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            background: var(--teal);
            color: var(--white);
            padding: 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            margin: 0;
            color: var(--white);
        }
        
        .close {
            color: var(--white);
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close:hover {
            color: var(--gold);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        /* Section Styles */
        section {
            margin-bottom: 60px;
        }
        
        h2 {
            color: var(--teal);
            font-size: 2.2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--gold);
        }
        
        h3 {
            color: var(--gold);
            font-size: 1.6em;
            margin: 25px 0 15px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.05em;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--teal), var(--gold));
            color: var(--white);
            padding: 50px 20px;
            margin: 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .stat-item {
            padding: 10px;
        }
        
        .stat-number {
            font-size: 3em;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .stat-label {
            font-size: 1em;
            opacity: 0.95;
            font-weight: 500;
            white-space: nowrap;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 30px;
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(33,135,139,0.2);
        }
        
        /* Why Choose Us Cards */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 35px 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
            transition: transform 0.3s;
            border-top: 4px solid var(--teal);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(33,135,139,0.2);
        }
        
        .feature-card h3 {
            color: var(--teal);
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        
        /* Doctor Profile */
        .doctor-profile {
            background: linear-gradient(135deg, #f4fcfd 0%, #fff8ec 100%);
            padding: 0;
            border-radius: 10px;
            margin-top: 30px;
            overflow: hidden;
        }
        
        .doctor-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .doctor-image {
            width: 100%;
            height: 100%;
        }
        
        .doctor-image img {
            width: 100%;
            height: 100%;
            min-height: 600px;
            object-fit: cover;
            object-position: center center;
            display: block;
        }
        
        .doctor-text {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .doctor-qualifications {
            background: var(--white);
            padding: 50px;
            border-radius: 10px;
            margin-top: 30px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
        }
        
        .doctor-qualifications ul {
            list-style: none;
            padding-left: 0;
        }
        
        .doctor-qualifications ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .doctor-qualifications ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2em;
        }
        
        /* Doctor Quote Section */
        .doctor-quote {
            background: linear-gradient(135deg, var(--teal), var(--gold));
            padding: 50px;
            border-radius: 10px;
            margin-top: 30px;
            position: relative;
            box-shadow: 0 5px 25px rgba(33,135,139,0.2);
        }

        .quote-icon {
            font-size: 3em;
            color: rgba(255,255,255,0.3);
            margin-bottom: 20px;
        }

        .doctor-quote blockquote {
            margin: 0;
            padding: 0;
        }

        .doctor-quote blockquote p {
            color: var(--white);
            font-size: 1.3em;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .doctor-quote blockquote cite {
            color: var(--white);
            font-size: 1.1em;
            font-style: normal;
            font-weight: bold;
            display: block;
            text-align: right;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .service-card {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
            border-left: 4px solid var(--gold);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(33,135,139,0.2);
        }
        
        .service-card h3 {
            color: var(--teal);
            margin-bottom: 15px;
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        /* Treatment Process */
        .treatment-process {
            padding: 20px 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
            border-top: 4px solid var(--gold);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .process-step-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--teal), var(--gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8em;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .step-number-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--white);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .process-step-card h3 {
            color: var(--teal);
            font-size: 1.3em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .process-step-card p {
            text-align: center;
            color: #555;
        }
        
        /* Locations */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .location-card {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
            border-top: 4px solid var(--teal);
        }
        
        .location-card h3 {
            color: var(--teal);
            margin-bottom: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            background: var(--light-gray);
            padding: 60px 20px;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 30px auto 0;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
            border-left: 4px solid var(--gold);
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
        }
        
        .testimonial-author {
            color: var(--teal);
            font-weight: bold;
            font-size: 1em;
            font-style: normal;
        }
        
        /* FAQ Section */
        .faq-item {
            background: var(--white);
            padding: 25px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(33,135,139,0.1);
            border-left: 4px solid var(--teal);
        }
        
        .faq-item h3 {
            color: var(--teal);
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--teal), var(--gold));
            color: var(--white);
            text-align: center;
            padding: 80px 20px;
            margin: 0;
        }
        
        .cta-banner h2 {
            color: var(--white);
            border: none;
            font-size: 2.8em;
            margin-bottom: 20px;
        }
        
        .cta-banner p {
            font-size: 1.4em;
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--light-gray);
            padding: 60px 20px;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
        }
        
        .contact-form h3 {
            color: var(--teal);
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--black);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-map {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(33,135,139,0.1);
        }
        
        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: 0;
        }
        
        /* Footer */
        footer {
            background: var(--teal);
            color: var(--white);
            padding: 40px 20px 0;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
            padding-bottom: 30px;
        }
        
        .footer-section h3 {
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        
        .footer-section a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .contact-grid,
            .doctor-content,
            .features-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .doctor-image img {
                min-height: 400px;
            }
            
            .dropdown-content {
                position: static;
                display: none;
                box-shadow: none;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .stat-label {
                white-space: normal;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar-content {
                justify-content: center;
                gap: 15px;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 155px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 20px 0;
                max-height: 70vh;
                overflow-y: auto;
            }
            
            .nav-menu a {
                color: var(--teal) !important;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hero {
                height: 100vh;
                padding: 20px;
                padding-top: 155px;
            }
            
            .hero h1 {
                font-size: 2.2em;
            }
            
            .hero .tagline {
                font-size: 1.2em;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            h2 {
                font-size: 1.8em;
            }
            
            .logo img {
                height: 60px;
            }
            
            .doctor-quote {
                padding: 30px;
            }
            
            .doctor-quote blockquote p {
                font-size: 1.1em;
            }
        }

/* ===== Extracted Style Block 2 ===== */
/* Additional Footer Styles - Add to existing CSS */
.footer-section p {
    line-height: 1.8;
}

.footer-section p i {
    margin-right: 8px;
    width: 16px;
}

/* Ensure responsive behavior for Quick Links */
@media (max-width: 768px) {
    .footer-section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}
