body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #1E6091;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-fixed .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E6091;
}

.header-fixed .navbar-brand:hover {
    color: #1E6091;
    opacity: 0.8;
}

.header-fixed .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-fixed .nav-link:hover {
    color: #1E6091;
}

.content-wrapper {
    margin-top: 80px;
}

.hero-block {
    background: linear-gradient(135deg, rgba(30, 96, 145, 0.9), rgba(30, 96, 145, 0.7)), url('images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-block h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-block p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.section-block:nth-child(even) {
    background: #f8f9fa;
}

.section-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-top: 1rem;
}

.btn-primary {
    background: #1E6091;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #164d73;
    transform: translateY(-2px);
}

.footer-section {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
}

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

.footer-section a:hover {
    opacity: 0.7;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

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

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

.cookie-banner .btn {
    margin: 0 5px;
}

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

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

.disclaimer-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
}

.disclaimer-box h3 {
    color: #856404;
    margin-top: 0;
}

.disclaimer-box p {
    color: #856404;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-block h1 {
        font-size: 2rem;
    }
    
    .hero-block p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .section-block {
        padding: 40px 0;
    }
}
