body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 18px;
    margin-bottom: 1rem;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.navbar-nav .nav-link:hover {
    color: #1E90FF;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 56px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #1E90FF;
    border-color: #1E90FF;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1873CC;
    border-color: #1873CC;
    transform: translateY(-2px);
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.blog-card .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #1E90FF;
    font-size: 1.25rem;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

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

footer a:hover {
    color: #1873CC;
}

footer .footer-links {
    margin-bottom: 2rem;
}

footer .footer-links a {
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 16px;
}

.cookie-banner .btn {
    margin-left: 15px;
}

.disclaimer-box {
    background-color: #f8f9fa;
    border-left: 4px solid #1E90FF;
    padding: 20px;
    margin: 30px 0;
}

.contact-form .form-control {
    margin-bottom: 1rem;
    padding: 12px;
}

.contact-form textarea {
    min-height: 150px;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
}
