/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3383;   /* RGB(44,51,131) */
    --secondary-color: #1B75BB; /* RGB(27,117,187) */
    --accent-green: #8CC63E;    /* RGB(140,198,62) */
    --accent-pink: #EC008B;     /* RGB(236,0,139) */
    --accent-lightblue: #27A9E1;/* RGB(39,169,225) */
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-logo img {
    max-width: 120px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    display: inline-block;
    margin-left: 16px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(44,51,131,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(44,51,131,0.12);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 10px 28px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.nav-menu .btn-secondary {
    color: var(--primary-color) !important;
    background: #fff !important;
    border: 2px solid var(--primary-color) !important;
}

.nav-menu .btn-secondary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Hero Card */
.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 0.5rem;
}

.card-header h4 {
    color: #333;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form select,
.quote-form input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form select:focus,
.quote-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-calculate {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo { display: none; }
.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 340px;
}
.footer-section .social-links {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}
.footer-section .social-links {
    display: flex;
    gap: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.footer-section .social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}
.footer-section .social-links .fa-x-twitter:before {
    content: "\e61b";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section {
        align-items: center;
    }
    .footer-section .social-links {
        justify-content: center;
    }
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.contact-info i {
    color: #2563eb;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

.service-card,
.feature,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-italic { font-style: italic; }

.primary-bg { background-color: var(--primary-color) !important; color: #fff !important; }
.secondary-bg { background-color: var(--secondary-color) !important; color: #fff !important; }

.accent-green { color: var(--accent-green) !important; }
.accent-pink { color: var(--accent-pink) !important; }
.accent-lightblue { color: var(--accent-lightblue) !important; }

.hero.new-landing {
    background: #fff;
    padding: 48px 0 0 0;
}
.hero.new-landing .hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}
.hero.new-landing h1 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--primary-color);
}
.hero.new-landing .font-bold {
    font-weight: 700;
    color: #222;
}
.hero.new-landing .hero-subtext {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 32px;
}
.hero.new-landing .hero-subtext i {
    color: var(--secondary-color);
    margin-right: 6px;
}
.hero.new-landing .hero-subtext .divider {
    color: #bbb;
    font-size: 1.3rem;
}
.insurance-icons {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}
.insurance-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.08rem;
    color: #222;
}
.insurance-type img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 8px;
}
.cta-btn {
    margin-top: 8px;
    font-size: 1.15rem;
    padding: 12px 40px;
    border-radius: 28px;
    font-weight: 600;
    cursor: pointer;
}

.hero.beautiful-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f8ff 0%, #e6f0fa 100%);
    padding: 0;
}
.hero-center-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}
.hero-content {
    background: rgba(255,255,255,0.98);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(44,51,131,0.08);
    padding: 48px 40px 40px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--primary-color);
    line-height: 1.2;
}
.hero-content .highlight {
    color: #222;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -1px;
}
.hero-intro {
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 2rem;
}
.hero-content .hero-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 32px;
}
.hero-content .hero-subtext i {
    color: var(--secondary-color);
    margin-right: 6px;
}
.hero-content .hero-subtext .divider {
    color: #bbb;
    font-size: 1.3rem;
}
.insurance-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.insurance-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,51,131,0.07);
    padding: 24px 20px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.insurance-card:hover {
    box-shadow: 0 6px 24px rgba(44,51,131,0.13);
    transform: translateY(-4px) scale(1.04);
}
.icon-bg {
    background: linear-gradient(135deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.icon-bg i {
    color: #fff;
    font-size: 2rem;
}
.insurance-label {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-top: 2px;
}
.cta-btn.big {
    margin-top: 18px;
    font-size: 1.18rem;
    padding: 16px 56px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(44,51,131,0.10);
    letter-spacing: 0.5px;
}
@media (max-width: 700px) {
    .hero-content {
        padding: 32px 10px 28px 10px;
        max-width: 98vw;
    }
    .insurance-cards {
        flex-direction: column;
        gap: 18px;
    }
    .cta-btn.big {
        width: 100%;
        padding: 14px 0;
    }
}

.hero-content.wide {
    max-width: 700px;
}
@media (max-width: 900px) {
    .hero-content.wide {
        max-width: 98vw;
    }
}

.cta-btn {
    cursor: pointer;
}
.cta-btn:hover {
    cursor: pointer;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    margin-top: 18px;
}
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}
.feature-icon-bg {
    background: linear-gradient(135deg, #27A9E1 0%, #1B75BB 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 24px rgba(39,169,225,0.10);
}
.feature-icon-bg i {
    color: #fff;
    font-size: 2.3rem;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #49505a;
    text-align: center;
}
@media (max-width: 700px) {
    .hero-features {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 28px;
    }
    .feature-card {
        min-width: 0;
    }
}

.hero-features.subtle {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 18px;
    margin-top: 8px;
    opacity: 0.7;
}
.feature-card.small {
    min-width: 80px;
}
.feature-icon-bg.small {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #e3f2fd 0%, #b3e0fc 100%);
    box-shadow: none;
}
.feature-icon-bg.small i {
    font-size: 1.1rem;
    color: #1B75BB;
}
.feature-title.small {
    font-size: 0.98rem;
    font-weight: 400;
    color: #49505a;
}

.main-insurance-section {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.insurance-cards.prominent {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 32px;
}
.insurance-card.prominent {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,51,131,0.10);
    padding: 32px 32px 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.icon-bg.prominent {
    background: linear-gradient(135deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.icon-bg.prominent i {
    color: #fff;
    font-size: 2rem;
}
.insurance-label.prominent {
    font-size: 1.13rem;
    color: #222;
    font-weight: 600;
    margin-top: 2px;
}
.cta-btn.big.prominent {
    margin-top: 18px;
    font-size: 1.22rem;
    padding: 18px 64px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(44,51,131,0.13);
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .insurance-cards.prominent {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 24px;
    }
    .insurance-card.prominent {
        min-width: 0;
        width: 100%;
        padding: 24px 0 16px 0;
    }
    .cta-btn.big.prominent {
        width: 100%;
        padding: 16px 0;
    }
}

.features-grid.new-why-choose {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: nowrap;
}
.feature-card.why {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(44,51,131,0.06);
    border: 1.5px solid #f2f4f8;
    padding: 32px 28px 24px 28px;
    min-width: 220px;
    max-width: 270px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, border 0.2s;
}
.feature-card.why:hover {
    box-shadow: 0 6px 32px rgba(44,51,131,0.13);
    border: 1.5px solid #e3e8f0;
}
.why-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #27A9E1;
}
.why-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.why-desc {
    font-size: 1.01rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 1200px) {
    .features-grid.new-why-choose {
        gap: 18px;
    }
    .feature-card.why {
        min-width: 180px;
        padding: 24px 10px 18px 10px;
    }
}
@media (max-width: 950px) {
    .features-grid.new-why-choose {
        flex-wrap: wrap;
    }
    .feature-card.why {
        min-width: 220px;
        max-width: 48vw;
        flex: 1 1 45%;
    }
}
@media (max-width: 700px) {
    .features-grid.new-why-choose {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .feature-card.why {
        width: 100%;
        max-width: 98vw;
        min-width: 0;
    }
}

.why-icon-bg {
    background: linear-gradient(135deg, #27A9E1 0%, #1B75BB 100%);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(39,169,225,0.10);
}
.why-icon-bg i {
    color: #fff;
    font-size: 1.7rem;
}

.testimonials-grid.new-testimonials.modern {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.testimonial-card.modern {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 2px 16px rgba(44,51,131,0.06);
    border: 1.5px solid #f2f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 340px;
    padding: 36px 28px 32px 28px;
    text-align: center;
    gap: 16px;
    flex: 1 1 280px;
}
.testimonial-img.modern img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    background: #f3f6fa;
    margin-bottom: 8px;
    border: 3px solid #e6f0fa;
}
.testimonial-name {
    font-size: 1.13rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}
.testimonial-text {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0;
}
@media (max-width: 900px) {
    .testimonials-grid.new-testimonials.modern {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .testimonial-card.modern {
        max-width: 98vw;
        padding: 24px 12px 20px 12px;
    }
    .testimonial-img.modern img {
        width: 64px;
        height: 64px;
    }
}

/* Beautiful CTA Customization */
.beautiful-cta.cta-section {
    padding: 2.5rem 0 2.5rem 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    flex: 1 0 auto;
    box-sizing: border-box;
}
.beautiful-cta .cta-content {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(44,51,131,0.08);
    padding: 32px 24px 28px 24px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.beautiful-cta .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.beautiful-cta .cta-icon i {
    font-size: 2.5rem;
    color: #27A9E1;
    background: linear-gradient(135deg, #e3f2fd, #b3e0fc);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(39,169,225,0.10);
}
.beautiful-cta .cta-content h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.beautiful-cta .cta-content p {
    font-size: 1.08rem;
    color: #49505a;
    margin-bottom: 1.6rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.beautiful-cta .cta-buttons {
    display: flex;
    justify-content: center;
}
.buy-insurance-btn {
    background: linear-gradient(135deg, #2563eb, #1B75BB);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 14px 44px;
    font-size: 1.13rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(44,51,131,0.10);
    letter-spacing: 0.5px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.buy-insurance-btn:hover {
    background: linear-gradient(135deg, #1B75BB, #2563eb);
    box-shadow: 0 6px 18px rgba(44,51,131,0.13);
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 700px) {
    .beautiful-cta .cta-content {
        padding: 18px 4px 16px 4px;
        max-width: 98vw;
    }
    .buy-insurance-btn {
        width: 100%;
        padding: 12px 0;
    }
}

.partners-section {
    background: #f8fafc;
    padding: 3.5rem 0 3.5rem 0;
}
.partners-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem 2.5rem;
    justify-items: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.partner-logo {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,51,131,0.06);
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 140px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.partner-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}
.partner-logo:hover {
    box-shadow: 0 6px 24px rgba(44,51,131,0.13);
    transform: translateY(-3px) scale(1.04);
}
@media (max-width: 700px) {
    .partners-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.2rem 1.2rem;
    }
    .partner-logo {
        height: 54px;
        width: 110px;
        padding: 10px 6px;
    }
    .partner-logo img {
        max-height: 28px;
    }
}

/* Redesigned Hero Section */
.hero.redesigned-hero {
    background: linear-gradient(135deg, #f5f8ff 0%, #e6f0fa 100%);
    padding: 0;
}
.hero-container-2col {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 0 24px;
    gap: 48px;
}
.hero-illustration {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    max-width: 340px;
}
.redesigned-hero-content {
    flex: 1 1 420px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(44,51,131,0.08);
    padding: 48px 40px 40px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-headlines .hero-intro {
    color: #1B75BB;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    display: block;
}
.hero-title-highlight {
    font-size: 2.7rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    display: block;
    position: relative;
}
.hero-title-highlight::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #2563eb 60%, #1B75BB 100%);
    border-radius: 3px;
    margin: 10px auto 0 auto;
}
.hero-subheadline {
    font-size: 1.08rem;
    color: #49505a;
    margin-bottom: 1.2rem;
}
.hero-features-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 1.8rem;
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #e3f2fd;
    color: #2563eb;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 20px;
    padding: 8px 18px;
    box-shadow: 0 2px 8px rgba(44,51,131,0.04);
}
.feature-pill i {
    color: #1B75BB;
    font-size: 1.1rem;
}
.redesigned-insurance-cards {
    gap: 32px;
    margin-bottom: 32px;
}
.redesigned-insurance-cards .insurance-card {
    box-shadow: none;
    border: 1.5px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 14px;
    cursor: default;
    transition: none;
}
.redesigned-insurance-cards .insurance-card:hover {
    box-shadow: none;
    border: 1.5px solid #e5e7eb;
    transform: none;
}
.insurance-type-label {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
    padding-left: 8px;
}
.insurance-benefit {
    font-size: 0.98rem;
    color: #49505a;
    margin-top: 6px;
    font-weight: 400;
}
.redesigned-cta-btn {
    background: linear-gradient(135deg, #2563eb, #1B75BB);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 18px 64px;
    font-size: 1.22rem;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(44,51,131,0.13);
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.redesigned-cta-btn:hover {
    background: linear-gradient(135deg, #1B75BB, #2563eb);
    box-shadow: 0 8px 32px rgba(44,51,131,0.18);
    transform: translateY(-3px) scale(1.04);
}
.trust-badge {
    margin-top: 0.5rem;
    color: #fbbf24;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: #fffbe7;
    border-radius: 16px;
    display: inline-block;
    padding: 6px 18px;
    box-shadow: 0 2px 8px rgba(251,191,36,0.07);
}
@media (max-width: 900px) {
    .hero-container-2col {
        flex-direction: column;
        gap: 24px;
        padding: 32px 8px 0 8px;
    }
    .hero-illustration {
        margin-bottom: 0;
        max-width: 220px;
    }
    .redesigned-hero-content {
        padding: 32px 10px 28px 10px;
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .hero-title-highlight {
        font-size: 2rem;
    }
    .hero-illustration {
        max-width: 120px;
    }
    .redesigned-cta-btn {
        width: 100%;
        padding: 14px 0;
    }
    .hero-features-row {
        flex-direction: column;
        gap: 10px;
    }
}

.hero-illustration img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 900px) {
    .hero-illustration img {
        max-width: 220px;
    }
}
@media (max-width: 600px) {
    .hero-illustration img {
        max-width: 120px;
    }
} 