        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #1a4d80;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo img {
            height: 50px;
            width: 50px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
        }
        
        .header-contact {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .phone {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
        }
        
        .cta-button {
            background: #ff6b35;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .cta-button:hover {
            background: #e55a2b;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a4d80 0%, #2d6ba8 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Three Problems Section */
        .problems {
            padding: 4rem 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #1a4d80;
        }
        
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .problem-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .problem-card h3 {
            color: #1a4d80;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .problem-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 4rem 0;
        }
        
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature {
            padding: 1.5rem;
        }
        
        .feature h4 {
            color: #1a4d80;
            margin-bottom: 0.5rem;
        }
        
        /* Pricing */
        .pricing {
            padding: 4rem 0;
            background: #f8f9fa;
            text-align: center;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem auto;
            max-width: 1200px;
        }
        
        .price-box {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .price-box:hover {
            transform: translateY(-5px);
        }
        
        .price-box.featured {
            border: 2px solid #1a4d80;
            position: relative;
        }
        
        .featured-tag {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #ff6b35;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .tier-name {
            color: #1a4d80;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: #1a4d80;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .price-details {
            font-size: 1rem;
            color: #666;
            flex-grow: 1;
        }
        
        .price-details ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
            text-align: left;
        }
        
        .price-details li {
            margin: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .price-details li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1a4d80;
        }
        
        .price-details .target {
            font-style: italic;
            color: #888;
            margin-top: 1rem;
        }
        
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
            
            .price-box {
                margin-bottom: 2rem;
            }
        }

        /* Why Choose Us */
        .why-us {
            padding: 4rem 0;
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .why-card {
            padding: 1.5rem;
        }
        
        .why-card h3 {
            color: #1a4d80;
            margin-bottom: 1rem;
        }
        
        /* Contact */
        .contact {
            padding: 4rem 0;
            background: #1a4d80;
            color: white;
            text-align: center;
        }
        
        .contact h2 {
            margin-bottom: 2rem;
        }
        
        .contact-info {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* Footer */
        footer {
            background: #0f2c4a;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .tagline {
                font-size: 1.2rem;
            }
            
            .header-contact {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                margin-top: 1rem;
            }
            
            .problems-grid,
            .features-list,
            .why-us-grid {
                grid-template-columns: 1fr;
            }
        }

/* Senior Services Section */
.senior-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.senior-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    color: #444;
}

.senior-stat {
    display: inline-block;
    background: #1a4d80;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.4rem 0.35rem 0;
}

.senior-stat a {
    color: #cfe4ff;
    text-decoration: underline;
}

.free-resources {
    max-width: 700px;
    margin: 2.5rem auto 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.free-resources summary {
    cursor: pointer;
    font-weight: 600;
    color: #1a4d80;
}

.free-resources p {
    margin: 0.75rem 0 0.5rem;
}

.free-resources ul {
    margin: 0 0 0 1.25rem;
}

.free-resources li {
    margin-bottom: 0.6rem;
}

.free-resources a {
    color: #1a4d80;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.service-card .service-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    color: #1a4d80;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-card a.learn-more {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.service-card a.learn-more:hover {
    text-decoration: underline;
}

/* Founder Bio Section */
.founder-bio {
    padding: 4rem 0;
}

.bio-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.bio-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a4d80 0%, #2d6ba8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.bio-text h3 {
    color: #1a4d80;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.bio-text p {
    margin-bottom: 1rem;
    color: #444;
}

.bio-credentials {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .bio-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* Sub-page nav/breadcrumb (used on service pages) */
.breadcrumb {
    background: #f0f4f8;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #1a4d80;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero {
    background: linear-gradient(135deg, #1a4d80 0%, #2d6ba8 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail h2 {
    color: #1a4d80;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-detail ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
}

.service-price-note {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}
