:root {
    --primary-color: #4680CD;
    --secondary-color: #4680CD;
    --accent-color: #E6EDF2;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #34393f;
}

/* Header - Force dark background always */
.navbar {
    background-color: #0a0c0e !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: #ccc !important;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu {
    margin-top: 0;
}

.btn-quote {
    background: #4680CD;
    border: none;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 128, 205, 0.3);
    color: white;
    background: #3a6bb8;
}

.btn-hero {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #d2d3d4;
    border-radius: .5rem;
}

.btn-hero:hover {
    background-color: #f9f8ff;
    border-color: #4680CD;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E6EDF2 0%, #f8fafc 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero {
        background: linear-gradient(115deg, #E6EDF2 59%, #0000 0), radial-gradient(ellipse at bottom, #34393f, #0a0c0e);
        background-repeat: no-repeat;
    }
    .hero::before {
        background: none!important;
    }
}

.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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0a0c0e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #34393f;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #4680CD;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 128, 205, 0.3);
    background: #3a6bb8;
}

.btn-outline-primary {
    border: 2px solid #4680CD;
    color: #4680CD;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4680CD;
    color: white;
    transform: translateY(-2px);
}

/* Insurance Cards */
.insurance-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4680CD;
}

.insurance-card i {
    font-size: 3rem;
    color: #4680CD;
    margin-bottom: 1rem;
}

.insurance-card h4 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    color: #0a0c0e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.insurance-card p {
    color: #34393f;
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0c0e;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #34393f;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps */
.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4680CD;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

/* FAQ */
.accordion-button {
    background: var(--accent-color);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: #4680CD;
    color: white;
}

/* Footer */
.footer {
    background-color: #0a0c0e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

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

/* Add global heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    color: #0a0c0e;
}

/* Add global paragraph and body text styles */
p, body, .lead {
    font-family: 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    color: #34393f;
}

/* Navbar toggler for dark background */
.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Page Specific */
.page-header {
    background: #4680CD;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4680CD;
    font-weight: bold;
}

.contact-info {
    background: #E6EDF2;
    padding: .9rem;
    border-radius: 15px;
}

.contact-info h4 {
    font-family: Basetica, Helvetica Neue, arial, sans-serif;
    color: #0a0c0e;
    margin-bottom: 1rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    background: #4680CD;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* White text for primary/secondary background sections */
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6,
.card.bg-primary h1, .card.bg-primary h2, .card.bg-primary h3, .card.bg-primary h4, .card.bg-primary h5, .card.bg-primary h6,
[style*="background: linear-gradient"] h1, [style*="background: linear-gradient"] h2, [style*="background: linear-gradient"] h3,
[style*="background: linear-gradient"] h4, [style*="background: linear-gradient"] h5, [style*="background: linear-gradient"] h6 {
    color: #fff !important;
}

.bg-primary p, .bg-primary .lead,
.card.bg-primary p, .card.bg-primary .lead,
[style*="background: linear-gradient"] p, [style*="background: linear-gradient"] .lead {
    color: #fff !important;
}
.font-32 {
    font-size: 32px;
}
.color-primary {
    color: #4680CD;
}

/* Insurance Partners Slider */
.partners-slider {
    overflow: hidden;
    position: relative;
    background: white;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.partner-logo img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}