:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.main-header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero h1 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .lead {
    color: var(--text-color);
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle .icon {
    font-size: 2rem;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-body h3, .card-body h5 {
    color: var(--dark-color);
}

.benefit-list .benefit-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-card {
    background-color: white;
    border: 1px solid var(--border-color);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.final-cta {
    background-color: var(--primary-color);
}

.page-header {
    border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
    color: var(--dark-color);
    font-weight: 700;
}

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

.value-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.value-list li:last-child {
    border-bottom: none;
}

.contact-info .contact-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-reasons {
    list-style: none;
    padding: 0;
}

.contact-reasons li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.contact-reasons li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.1);
}

.thank-you-content {
    background-color: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon .icon {
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.policy-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    color: var(--dark-color);
    font-weight: 600;
}

.policy-content ul {
    margin-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.main-footer {
    background-color: var(--dark-color);
    margin-top: 60px;
}

.main-footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-footer p {
    color: #cbd5e1;
    margin-bottom: 5px;
}

.main-footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner a {
    color: white;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 40px 20px;
    }
    
    .cookie-banner .btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}
