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

body {
    font-family: 'Roboto Flex', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
}

/* Index page - dark background */
body.index-page {
    color: #e2e8f0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
}

/* Other pages - light background */
body.light-page {
    color: #374151;
    background-color: #ffffff;
}

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

/* Navigation - styles are dynamically set in header.php */

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #f8fafc;
}

.logo img {
    height: 32px;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(248, 250, 252, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f8fafc;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

/* Ensure nav primary link text is white */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: #ffffff;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 58, 138, 0.65) 40%, rgba(30, 58, 138, 0) 70%), url('images/quoteguy.png') right top calc(20% + 30px)/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-arrow svg {
    color: white;
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    z-index: -1;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: #60a5fa;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 10px 28px;
    font-size: 16px;
}

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

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

.section-white {
    background: transparent;
}

.section-gray {
    background: rgba(30, 41, 59, 0.3);
}

.section-header {
    text-align: justify;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #f8fafc;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #94a3b8;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Grid */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Cards */
.card {
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    box-shadow: none;
    transition: transform 0.3s;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    background: none;
}

.icon-red {
    background: none;
}

.icon-blue {
    background: none;
}

.icon-orange {
    background: none;
}

.icon-green {
    background: none;
}

.icon-purple {
    background: none;
}

.icon-yellow {
    background: #fef3c7;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 12px;
}

.card p {
    color: #94a3b8;
    line-height: 1.6;
    text-align: justify;
}

/* Steps */
.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Coming Soon */
.coming-soon-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.coming-soon-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.check {
    color: #10b981;
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(30, 58, 138, 0.6), rgba(30, 58, 138, 0.6)), url('images/IMG_1436.jpeg') center/cover;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
    color: #374151;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
    flex-wrap: wrap;
}

.form-benefits div {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer */
footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
    padding-top: 0;
}

.footer-brand svg {
    width: 96px;
    height: auto;
    margin-right: 8px;
}

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    padding-top: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

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

.footer ul li a:hover {
    color: white;
}

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

/* Cookie Banner Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.3s ease;
}

.cookie-overlay.active {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-icon {
    font-size: 28px;
}

.cookie-banner h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-banner p {
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner a {
    color: #2563eb;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-text {
    background: transparent;
    color: #666;
    padding: 12px 16px;
}

.btn-text:hover {
    color: #333;
    background: #f5f5f5;
}

/* Preferences Modal */
.preferences-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.preferences-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #333;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 180px);
}

.modal-intro {
    color: #4a4a4a;
    margin-bottom: 24px;
    font-size: 14px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required-badge {
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #2563eb;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 720px;
    max-width: 90%;
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #f8fafc;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.video-close:hover {
    color: #ef4444;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large,
    .btn-secondary {
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner-content {
        padding: 24px 16px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .preferences-modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-body {
        max-height: calc(90vh - 180px);
    }
}

/* Timeline Styles */
.workflow-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 60px 0 80px;
    flex-wrap: wrap;
}

.workflow-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.workflow-tab:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.workflow-tab.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-container {
    position: relative;
    padding: 80px 20px;
    overflow-x: auto;
    overflow-y: visible;
    margin: 0 auto;
}

.timeline-container.timeline-hidden {
    display: none;
}

.timeline-line {
    position: absolute;
    top: 90px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(37, 99, 235, 0.2) 0%,
        rgba(37, 99, 235, 0.6) 50%,
        rgba(37, 99, 235, 0.2) 100%
    );
    border-radius: 2px;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-width: 900px;
    margin: 0 auto;
    max-width: 1100px;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-marker {
    position: relative;
    width: 20px;
    height: 20px;
    margin-bottom: 32px;
    z-index: 2;
}

.step-number-timeline {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
    border: 3px dotted white;
}

.step-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content-timeline {
    text-align: center;
    max-width: 180px;
}

.step-content-timeline h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.step-content-timeline p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .workflow-tabs {
        flex-direction: column;
        padding: 0 20px;
    }

    .workflow-tab {
        width: 100%;
        justify-content: center;
    }

    .timeline-container {
        padding: 60px 10px;
    }

    .timeline-line {
        top: 105px;
        left: 2%;
        right: 2%;
    }

    .timeline-steps {
        min-width: 750px;
    }

    .step-marker {
        width: 18px;
        height: 18px;
    }

    .step-number-timeline {
        width: 18px;
        height: 18px;
        border: 2px dotted white;
    }

    .step-pulse {
        width: 28px;
        height: 28px;
        top: -5px;
        left: -5px;
    }

    .step-content-timeline {
        max-width: 140px;
    }

    .step-content-timeline h3 {
        font-size: 16px;
    }

    .step-content-timeline p {
        font-size: 12px;
    }
}

/* Industry Insights Page Styles */
.insight-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.insight-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto Flex', sans-serif;
}

.insight-tab:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.insight-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content {
    display: block;
}

.tab-content.tab-hidden {
    display: none;
}

.highlight-box {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 24px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.stat-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.quote {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 24px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #1e40af;
}

.quote-attribution {
    text-align: right;
    font-size: 14px;
    color: #6b7280;
    margin-top: 12px;
    font-style: normal;
}

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

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 18px;
    color: #4b5563;
}

.benefits-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
}

.references {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.references h3 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 20px;
}

.references ol {
    list-style: none;
    counter-reset: reference-counter;
}

.references li {
    counter-increment: reference-counter;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: #6b7280;
}

.references li:before {
    content: "[" counter(reference-counter) "]";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

.references a {
    color: #2563eb;
    text-decoration: none;
}

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

.disclaimer-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: -10px;
}