:root {
    --primary-blue: #0A4D8C;
    --accent-gold: #D4AF37;
    --deep-teal: #006B7D;
    --coral: #FF6B6B;
    --cream: #FAF7F0;
    --charcoal: #2C2C2C;
    --light-gray: #F5F5F5;
    --success-green: #10B981;
    --text-gray: #4A5568;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TradingView Widget */
.tradingview-widget-container {
    width: 100%;
    height: 64px;
    overflow: hidden;
}

.tradingview-widget-container__widget {
    width: 100%;
    height: 64px;
}

.tradingview-widget-copyright {
    display: none !important;
}

/* Header & Navigation */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-gold);
}

.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-teal) 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-quick-links {
    display: grid;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    transition: background 0.3s, transform 0.2s;
}

.quick-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.quick-link-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Services Section */
.services {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-blue);
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; border-top-color: var(--accent-gold); }
.service-card:nth-child(3) { animation-delay: 0.3s; border-top-color: var(--deep-teal); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(10,77,140,0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 1rem;
}

/* Health Insurance Companies */
.insurance-companies {
    background: white;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.insurance-companies-content {
    max-width: 1400px;
    margin: 0 auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out backwards;
}

.company-card:nth-child(1) { animation-delay: 0.1s; }
.company-card:nth-child(2) { animation-delay: 0.15s; }
.company-card:nth-child(3) { animation-delay: 0.2s; }
.company-card:nth-child(4) { animation-delay: 0.25s; }
.company-card:nth-child(5) { animation-delay: 0.3s; }
.company-card:nth-child(6) { animation-delay: 0.35s; }
.company-card:nth-child(7) { animation-delay: 0.4s; }
.company-card:nth-child(8) { animation-delay: 0.45s; }
.company-card:nth-child(9) { animation-delay: 0.5s; }
.company-card:nth-child(10) { animation-delay: 0.55s; }

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: white;
}

.company-logo {
    width: 200px;
    height: 100px;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.company-card h4 {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.company-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
    height: 100%;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--deep-teal), var(--primary-blue));
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Why Choose Us */
.why-choose {
    background: var(--primary-blue);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, background 0.3s;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-gold), #C99A2E);
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.cta-box h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-center {
    display: flex;
    justify-content: center;
}

.cta-form-button {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--accent-gold);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-form-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* SEBI Disclaimer Section */
.disclaimer-section {
    background: var(--cream);
    padding: 2rem;
}

.disclaimer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer-text {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 600;
}

.disclaimer-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-teal) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.about-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--cream);
}

.about-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--accent-gold);
}

.about-intro h2 {
    font-family: 'Libre Baskerville', serif;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-intro strong {
    color: var(--charcoal);
    font-weight: 600;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Libre Baskerville', serif;
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.about-section strong {
    color: var(--charcoal);
    font-weight: 600;
}

.expertise-section {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.about-conclusion {
    background: linear-gradient(135deg, rgba(10,77,140,0.05), rgba(0,107,125,0.05));
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-teal));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-cta .btn {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.3s;
}

.about-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
}

/* SEO-focused Location Section */
.location-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.location-content {
    max-width: 1400px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.location-text {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-text h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.location-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-highlights {
    list-style: none;
    margin-top: 1.5rem;
}

.location-highlights li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.location-highlights li::before {
    content: '📍';
    font-size: 1.25rem;
}

.contact-card {
    background: var(--primary-blue);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(10,77,140,0.3);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

@media (max-width: 1024px) {
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* Blog View More Button */
.blog-view-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10,77,140,0.3);
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-teal) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Blog Posts Section */
.blog-posts-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.blog-posts-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Full Blog Post */
.blog-post-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-post-header {
    padding: 2.5rem 3rem 1.5rem;
}

.blog-category-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-category-badge.health-insurance {
    background: var(--accent-gold);
}

.blog-post-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-meta-info {
    display: flex;
    gap: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-post-image-full {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--deep-teal), var(--primary-blue));
    overflow: hidden;
}

.blog-post-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 3rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.blog-post-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

.blog-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.blog-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-teal));
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.blog-cta .btn {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.3s;
}

.blog-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.75rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--primary-blue);
}

.category-list span {
    color: var(--accent-gold);
    font-weight: 600;
}

.sidebar-cta {
    display: block;
    background: var(--accent-gold);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
    margin-top: 1rem;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .blog-posts-section {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .services-grid,
    .blog-grid,
    .companies-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-post-header {
        padding: 2rem 1.5rem 1rem;
    }

    .blog-post-header h2 {
        font-size: 1.5rem;
    }

    .blog-post-content {
        padding: 2rem 1.5rem;
    }

    .blog-post-image-full {
        height: 250px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-container {
        padding: 2rem 1.5rem;
    }

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

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-intro h2 {
        font-size: 1.75rem;
    }
}
