
        :root {
            --primary: #5B9BD5;
            --primary-dark: #4A8BC2;
            --secondary: #2C3E50;
            --text: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        
        /* Hero Section */
        .hero {
            padding: 4rem 5%;
            text-align: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero h2 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-weight: 400;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .tooth-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .hero p {
            max-width: 800px;
            margin: 0 auto 3rem;
            color: var(--text-light);
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

   

        /* About Section */
        .about {
            padding: 6rem 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            position: relative;
        }

        .about-images img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            transition: var(--transition);
        }

        .about-images img:hover {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }




        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            padding: 5rem 5%;
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            background: var(--white);
            -webkit-background-clip: text;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Values Section */
        .values {
            padding: 6rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }

        .values-text {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .value-card {
            padding: 2rem;
            border-radius: 15px;
            color: var(--white);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateX(10px);
        }

        .value-card.mission {
            background: var(--secondary);
        }

        .value-card.satisfaction {
            background: var(--primary);
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .values-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .value-img {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 520px;
        }

        .value-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .value-img:hover img {
            transform: scale(1.1);
        }

        .img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem;
            color: var(--white);
        }

        /* Reviews Section */
        .reviews {
            padding: 6rem 5%;
            background: var(--bg-light);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .review-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
            transition: var(--transition);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: serif;
        }

        .stars {
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .review-text {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
        }

        .reviewer-name {
            font-weight: 700;
            color: var(--secondary);
        }

         /* FAQ Section */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        /* FAQ Badge */
        .faq-badge {
            display: inline-block;
            background-color: #e8ecf1;
            color: #5a6c7d;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        /* FAQ Title */
        .faq-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
        }

        /* FAQ Container */
        .faq-container {
            background-color: #f5f7fa;
            border-radius: 16px;
            padding: 10px;
            text-align: left;
        }

        /* FAQ Item */
        .faq-item {
            background-color: #f5f7fa;
            border-bottom: 1px solid #e8ecf1;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        /* FAQ Question */
        .faq-question {
            width: 100%;
            padding: 20px;
            background: none;
            border: none;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #4a90e2;
        }

        /* FAQ Icon */
        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            color: #5a6c7d;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* FAQ Answer */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 20px 20px 20px;
            color: #6b7280;
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 28px;
            }
            
            .faq-question {
                font-size: 14px;
                padding: 16px;
            }
            
            .faq-answer-content {
                padding: 0 16px 16px 16px;
                font-size: 13px;
            }
        }
       