:root {
            --primary-dark: #1a2332;
            --primary-dark-alt: #1e2d3d;
            --accent: #c9a96e;
            --accent-hover: #b8944f;
            --cream: #faf8f5;
            --white: #ffffff;
            --text-dark: #2a2a2a;
            --text-muted: #7a7a7a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
            padding: 14px 28px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 14px 28px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
        }

        /* Hero Section - V8: img tag approach for reliable positioning */
        .hero {
            height: 110vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 0 60px 80px;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-image img {
            position: absolute;
            left: 50%;
            top: 80px;
            transform: translateX(-50%);
            width: 110%;
            height: auto;
            min-height: calc(100% - 80px);
            object-fit: cover;
            object-position: center top;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(26,35,50,0.1) 0%, rgba(26,35,50,0.3) 50%, rgba(26,35,50,0.85) 70%, rgba(26,35,50,0.95) 100%);
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            color: var(--white);
            animation: fadeInUp 1.2s ease-out;
            position: relative;
            z-index: 2;
        }

        .hero-label {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: 85px;
            line-height: 0.95;
            margin-bottom: 20px;
        }

        .hero-title-1 {
            font-weight: 700;
            display: block;
        }

        .hero-title-2 {
            font-weight: 300;
            display: block;
        }

        .hero-accent-line {
            width: 60px;
            height: 2px;
            background: var(--accent);
            margin: 24px 0;
        }

        .hero-subtitle {
            font-size: 18px;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        /* Credentials Bar - SIMPLIFIED */
        .credentials-bar {
            background: var(--primary-dark-alt);
            padding: 30px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
        }

        .credential-item {
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .credential-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 30px;
            background: var(--accent);
        }

        .credential-text {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        /* About Section - V8: Move overlapping image up */
        .about-section {
            background: var(--white);
            padding: 0 0 80px;
            display: flex;
            align-items: stretch;
            min-height: 700px;
            position: relative;
        }



        .about-content {
            width: 45%;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-label {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 56px;
            line-height: 1.0;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title-bold {
            font-weight: 700;
            display: block;
        }

        .section-title-light {
            font-weight: 300;
            display: block;
        }

        .section-accent-line {
            width: 60px;
            height: 2px;
            background: var(--accent);
            margin: 24px 0 30px;
        }

        .about-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .about-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        .about-link::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .about-link:hover::after {
            transform: translateX(5px);
        }

        .about-image {
            width: 55%;
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Image Mosaic Strip - V7: Zero gap from about section */
        .mosaic-strip {
            height: 200px;
            display: flex;
            overflow: hidden;
            margin-top: -80px;
        }

        .mosaic-image {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .mosaic-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mosaic-image:hover img {
            transform: scale(1.05);
        }

        /* Stats Section */
        .stats-section {
            background: var(--primary-dark);
            padding: 100px 60px;
            color: var(--white);
        }

        .stats-container {
            text-align: center;
        }

        .stats-title {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 72px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 15px;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
        }

        /* Oral Surgery Services Section - V8: Equal height cards */
        .oral-services-section {
            background: linear-gradient(rgba(26,35,50,0.85), rgba(26,35,50,0.85)), 
                        url('images/All_Photos/LakeNormanFinal-80.jpg') center/cover no-repeat;
            padding: 150px 60px;
            color: var(--white);
            margin-top: 80px;
        }

        .services-header {
            text-align: center;
            margin: 0 auto 80px;
        }

        .services-title {
            margin: 0 auto;
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            max-width: 800px;
        }

        /* V8: Equal height service cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 1fr; /* Forces equal height rows */
            gap: 40px;
        }

        .service-card {
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 40px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            height: 100%; /* Fill the grid cell */
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            background: rgba(255,255,255,0.08);
        }

        .service-number {
            color: var(--accent);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .service-name {
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--white);
        }

        .service-desc {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255,255,255,0.7);
        }

        /* V8: Mid-contact section - Add subheader and match bottom contact style */
        .mid-contact-section {
            display: flex;
            align-items: stretch;
            min-height: 800px; /* Match contact section height */
            margin: 80px 0;
        }

        .mid-contact-content {
            width: 45%; /* Match contact section width */
            background: var(--primary-dark);
            padding: 80px 60px; /* Match contact section padding */
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }

        /* V8: Add gold subheader label to mid-contact */
        .mid-contact-label {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .mid-contact-title {
            font-family: 'Oswald', sans-serif;
            font-size: 56px; /* Match contact title size */
            line-height: 1.0;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px; /* Match contact spacing */
            font-weight: 600;
        }

        .mid-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px; /* Match contact form gap */
        }

        .mid-contact-form .form-input {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
            padding: 15px 0; /* Match contact form padding */
            font-size: 16px; /* Match contact form font-size */
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .mid-contact-form .form-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .mid-contact-form .form-input:focus {
            outline: none;
            border-bottom-color: var(--accent);
        }

        .mid-contact-form .form-submit {
            background: var(--accent);
            color: var(--primary-dark);
            border: none;
            padding: 18px 0; /* Match contact form padding */
            font-size: 14px; /* Match contact form font-size */
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .mid-contact-form .form-submit:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .mid-contact-image {
            width: 55%; /* Match contact section width */
            position: relative;
            overflow: hidden;
        }

        .mid-contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Facial Cosmetic Services Section - V6: 2-column with descriptions */
        .cosmetic-services-section {
            background: var(--cream);
            padding: 150px 60px;
            color: var(--text-dark);
        }

        .cosmetic-services-header {
            text-align: center;
            margin: 0 auto 80px;
        }

        .cosmetic-services-title {
            margin: 0 auto;
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            max-width: 800px;
            color: var(--text-dark);
        }

        .cosmetic-services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cosmetic-service-item {
            text-decoration: none;
            color: inherit;
            border-left: 2px solid var(--accent);
            padding-left: 30px;
            position: relative;
            padding-bottom: 30px;
        }

        .cosmetic-service-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
        }

        .cosmetic-service-name {
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .cosmetic-service-desc {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .cosmetic-service-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            display: inline-block;
        }

        .cosmetic-service-link:hover {
            color: var(--accent-hover);
        }

        /* Technology Section - V8: Fix text colors for dark background */
        .technology-section {
            background: var(--primary-dark);
            padding: 150px 0;
            display: flex;
            align-items: stretch;
            min-height: 700px;
            color: var(--white);
        }

        .tech-image {
            width: 55%;
            position: relative;
            overflow: hidden;
        }

        .tech-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tech-content {
            width: 45%;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* V8: Fix technology section text colors */
        .tech-content .section-label {
            color: var(--accent); /* Gold */
        }

        .tech-content .section-title {
            color: var(--white); /* White */
        }

        .tech-content .about-text {
            color: rgba(255,255,255,0.8); /* Light gray */
        }

        .tech-features {
            list-style: none;
            margin-top: 30px;
        }

        .tech-feature {
            padding: 10px 0;
            border-left: 2px solid var(--accent);
            padding-left: 20px;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 500;
            color: var(--white); /* White */
        }

        /* Team Cards Section - V8: Use same image for all 3, name is Amanda */
        .team-cards-section {
            background: var(--cream);
            padding: 120px 60px;
        }

        .team-cards-container {
            text-align: center;
        }

        .team-cards-title {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 60px;
            color: var(--text-dark);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-card {
            background: var(--white);
            padding: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-photo {
            width: 100%;
            height: 450px;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .team-info {
            padding: 30px 20px;
        }

        .team-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .team-title {
            font-size: 14px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Team Culture Section - V6: 50% taller */
        .team-section {
            height: 900px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }

        .team-section img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .team-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(26,35,50,0.5), rgba(26,35,50,0.5));
            z-index: -1;
        }

        .team-content {
            max-width: 800px;
            padding: 0 60px;
            z-index: 2;
            position: relative;
        }

        .team-title-main {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .team-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            align-items: stretch;
            min-height: 800px;
        }

        .contact-content {
            width: 45%;
            background: var(--primary-dark);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }

        .contact-title {
            font-family: 'Oswald', sans-serif;
            font-size: 56px;
            line-height: 1.0;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .contact-subtitle {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 40px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-input, .form-textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
            padding: 15px 0;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-bottom-color: var(--accent);
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-submit {
            background: var(--accent);
            color: var(--primary-dark);
            border: none;
            padding: 18px 0;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .form-submit:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .contact-image {
            width: 55%;
            position: relative;
            overflow: hidden;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Testimonial Section */
        .testimonial-section {
            position: relative;
            padding: 100px 60px;
            text-align: center;
            overflow: hidden;
        }

        .testimonial-section img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .testimonial-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(250,248,245,0.9), rgba(250,248,245,0.9));
            z-index: -1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-quote-icon {
            font-size: 60px;
            color: var(--accent);
            margin-bottom: 30px;
            font-family: serif;
        }

        .testimonial-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-style: italic;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto 20px;
            color: var(--text-dark);
        }

        .testimonial-author {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
        }

        /* V8: Professional affiliations - add background color and center */
        .professional-orgs {
            text-align: center;
            margin-top: 40px;
            padding: 40px 0; /* More padding */
            background: rgba(201,169,110,0.15); /* Muted gold background */
            border-top: none; /* Remove old border */
        }

        .professional-orgs h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-dark); /* Dark text on light background */
            margin-bottom: 15px;
            font-weight: 500;
        }

        .orgs-list {
            margin: 0 auto;
            font-size: 13px;
            line-height: 1.8;
            color: var(--primary-dark); /* Dark text on light background */
            max-width: 800px;
        }

        /* Footer - V8: Fix layout and copyright */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 60px 0;
        }

        /* V8: Remove or left-align the footer logo */
        .footer-logo {
            text-align: left; /* Left-align instead of center */
            margin-bottom: 40px;
        }

        .footer-logo-text {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-address {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(201,169,110,0.3);
            margin-top: 40px;
            padding: 20px 0;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 13px;
        }

        /* V8: Tekneq link styling */
        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--accent-hover);
        }

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 0 30px 60px;
                height: 100vh;
            }

            .hero-title {
                font-size: 60px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .credentials-bar {
                flex-wrap: wrap;
                gap: 30px;
                padding: 40px 30px;
            }

            .about-section {
                flex-direction: column;
            }

            .about-content, .about-image {
                width: 100%;
            }

            .about-image {
                height: 400px;
            }

            .mosaic-strip {
                height: 150px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-number {
                font-size: 48px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cosmetic-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .team-photo {
                height: 380px;
            }

            .team-info {
                padding: 24px 18px;
            }

            .technology-section {
                flex-direction: column-reverse;
            }

            .tech-image, .tech-content {
                width: 100%;
            }

            .tech-image {
                height: 400px;
            }

            .contact-section {
                flex-direction: column;
            }

            .contact-content, .contact-image {
                width: 100%;
            }

            .contact-image {
                height: 400px;
            }

            .mid-contact-section {
                flex-direction: column;
            }

            .mid-contact-content, .mid-contact-image {
                width: 100%;
            }

            .mid-contact-image {
                height: 400px;
            }

            .cosmetic-services-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 48px;
            }

            .section-title {
                font-size: 40px;
            }

            .services-title {
                font-size: 36px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .cosmetic-services-grid {
                grid-template-columns: 1fr;
            }
        }
