* {
            box-sizing: border-box;
        }
        h1,h2,h3,h4,h5,h6,p,ul,ol,figure { margin: 0; padding: 0; }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
        }
        
        /* Container */
        .deck-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Top Header Bar */
        .top-header {
            background: #0f4c81;
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-weight: 600;
        }
        
        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(15, 76, 129, 0.85), rgba(15, 76, 129, 0.85)), 
                              url(\'https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&amp;w=2000&amp;auto=format&amp;fit=crop\');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 300;
        }
        
        .hero .tagline {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .location-tags {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .location-tag {
            background: rgba(255,255,255,0.2);
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .location-tag:hover {
            background: rgba(255,255,255,0.3);
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
            margin: 10px;
        }
        
        .cta-button:hover {
            background: #e55a2b;
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: rgba(255,255,255,0.1);
        }
        
        /* Trust Badges */
        .trust-badges {
            background: #f8f9fa;
            padding: 30px 20px;
            text-align: center;
        }
        
        .badges-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .badge {
            text-align: center;
        }
        
        .badge-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .badge-text {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        /* Sections */
        section {
            padding: 60px 20px;
        }
        
        .section-light {
            background: #f8f9fa;
        }
        
        .section-white {
            background: white;
        }
        
        h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        .section-intro {
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            line-height: 1.8;
        }
        
        /* Benefits Grid */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .benefit-item strong {
            color: #0f4c81;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Services Grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .step {
            text-align: center;
        }
        
        .step-number {
            background: #ff6b35;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            font-weight: 600;
        }
        
        .step p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            height: 250px;
            background: #d1d5db;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 600;
            text-align: center;
            padding: 30px;
            font-size: 1.1rem;
            line-height: 1.5;
        }
        
        .gallery-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 0;
            margin: 0;
        }
        
        .gallery-item span {
            position: relative;
            z-index: 1;
        }
        
        /* Service Area */
        .service-area {
            background: #d1d5db;
            color: #1a1a1a;
            padding: 60px 20px;
        }
        
        .service-area h2 {
            color: #1a1a1a;
        }
        
        .service-area p {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .stars {
            color: #f39c12;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 600;
            color: #0f4c81;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(15, 76, 129, 0.05);
        }
        
        .faq-question::after {
            content: '\25BC';
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 25px 20px 25px;
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        
        footer p {
            opacity: 0.9;
            margin: 5px 0;
        }
        
        /* Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .gallery-grid,
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .badges-grid {
                gap: 20px;
            }
            
            .service-grid,
            .process-steps,
            .testimonials-grid,
            .gallery-grid,
            .benefits {
                grid-template-columns: 1fr;
            }
        }
/* Supplementary rules for common landing page classes */
.services { padding: 60px 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.service-icon { width: 48px; height: 48px; margin-bottom: 12px; color: var(--accent, #b87333); }
.service-icon svg { width: 100%; height: 100%; }
.service-header { margin-bottom: 8px; }
.service-header h3 { font-size: 1.2rem; font-weight: 700; }
.service-body { color: #555; line-height: 1.6; }
.services-section { padding: 60px 20px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.cta-button { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.cta-button:not(.secondary) { background: var(--accent, #b87333); color: #fff; }
.cta-button:not(.secondary):hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,115,51,0.3); }
.cta-button.secondary { background: transparent; border: 2px solid currentColor; color: inherit; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.form-container { max-width: 500px; margin: 0 auto; padding: 30px; background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.trust-section { padding: 50px 20px; background: var(--off-white, #f7f9fc); text-align: center; }
.trust-header { font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { font-size: 2rem; }
.info-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.area-item { padding: 8px 12px; background: var(--off-white, #f7f9fc); border-radius: 6px; text-align: center; font-size: 0.9rem; }
/* Dental variant classes */
.hero-content { max-width: 700px; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-top: 12px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero-kicker { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.hero-body { font-size: 1.1rem; margin-top: 12px; line-height: 1.7; }
.hero-serving { font-size: 0.95rem; margin-top: 15px; opacity: 0.85; }
.cta-section { padding: 60px 20px; text-align: center; background: linear-gradient(135deg, #0f2847, #1a3c6e); color: #fff; border-radius: 16px; margin: 40px 20px; }
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .hero-features { flex-direction: column; }
}

/* Hero sub-components */
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; margin-bottom: 16px; }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.hero-sub { font-size: 1.15rem; opacity: 0.9; margin-top: 12px; }
.hero-sub-small { font-size: 0.95rem; opacity: 0.8; margin-top: 8px; }

/* Supplementary rules for common landing page classes */
.services { padding: 60px 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.service-icon { width: 48px; height: 48px; margin-bottom: 12px; color: var(--accent, #b87333); }
.service-icon svg { width: 100%; height: 100%; }
.service-header { margin-bottom: 8px; }
.service-header h3 { font-size: 1.2rem; font-weight: 700; }
.service-body { color: #555; line-height: 1.6; }
.services-section { padding: 60px 20px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.cta-button { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.cta-button:not(.secondary) { background: var(--accent, #b87333); color: #fff; }
.cta-button:not(.secondary):hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,115,51,0.3); }
.cta-button.secondary { background: transparent; border: 2px solid currentColor; color: inherit; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.form-container { max-width: 500px; margin: 0 auto; padding: 30px; background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.trust-section { padding: 50px 20px; background: var(--off-white, #f7f9fc); text-align: center; }
.trust-header { font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { font-size: 2rem; }
.info-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.area-item { padding: 8px 12px; background: var(--off-white, #f7f9fc); border-radius: 6px; text-align: center; font-size: 0.9rem; }
/* Dental variant classes */
.hero-content { max-width: 700px; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-top: 12px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero-kicker { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.hero-body { font-size: 1.1rem; margin-top: 12px; line-height: 1.7; }
.hero-serving { font-size: 0.95rem; margin-top: 15px; opacity: 0.85; }
.cta-section { padding: 60px 20px; text-align: center; background: linear-gradient(135deg, #0f2847, #1a3c6e); color: #fff; border-radius: 16px; margin: 40px 20px; }
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .hero-features { flex-direction: column; }
}

/* FAQ section */
.faq { padding: 60px 20px; max-width: 800px; margin: 0 auto; }
.faq-title { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 8px; }
.faq-subtitle { text-align: center; color: #666; margin-bottom: 30px; }
.faq-item { border-bottom: 1px solid #eee; padding: 16px 0; }
.faq-question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding-top: 12px; color: #555; line-height: 1.7; }
/* Gallery & Process sections */
.gallery-section { padding: 60px 20px; }
.process-section { padding: 60px 20px; background: var(--off-white, #f8f9fa); }
/* FAQ Lead section (variation) */
.faqlead-section { padding: 60px 20px; }
.faqlead-wrap { max-width: 800px; margin: 0 auto; }
.faqlead-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 20px; }
/* Area section */
.area-section { padding: 50px 20px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
/* Form grid */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.form-left { }
.form-checklist { list-style: none; padding: 0; }
.form-checklist li { padding: 8px 0; padding-left: 24px; position: relative; }
.form-checklist li::before { content: ✓; position: absolute; left: 0; color: var(--accent, #b87333); font-weight: bold; }
/* Calculator cards */
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.calc-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); border: 1px solid #eee; }
.calc-card-header { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.calc-note { font-size: 0.9rem; color: #666; margin-top: 8px; font-style: italic; }
.badge-item { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--off-white, #f7f9fc); border-radius: 6px; font-size: 0.85rem; }
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
}
