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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.78;
    color: #333;
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0D47A1;
    margin-bottom: 20px;
}

h1 {
    font-size: 47px;
    line-height: 1.2;
}

h2 {
    font-size: 37px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    line-height: 1.4;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0D47A1;
    text-decoration: none;
    transition: opacity 0.4s ease;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.4s ease;
    padding: 5px 10px;
}

.nav-menu a:hover {
    color: #0D47A1;
    text-decoration: none;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 38px;
}

.hero-content h1 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
    animation: fadeIn 0.4s ease;
}

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

.section-box {
    background: #fff;
    padding: 38px;
    border-radius: 12px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
    margin-bottom: 38px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.image-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 45%;
}

.image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 45%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.btn-primary {
    display: inline-block;
    background: #0D47A1;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #0A3A7F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
    text-decoration: none;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0D47A1;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid #0D47A1;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #0D47A1;
    color: #fff;
    text-decoration: none;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

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

.product-card h3 {
    color: #0D47A1;
    margin-bottom: 15px;
}

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

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0D47A1;
}

.disclaimer-box {
    background: #FFF9E6;
    border-left: 4px solid #FFB300;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.disclaimer-box h3 {
    color: #FF8F00;
    margin-bottom: 15px;
}

.contact-form {
    background: #fff;
    padding: 38px;
    border-radius: 12px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.4s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0D47A1;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background: #1A1A1A;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #B0B0B0;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.4s ease;
}

.close-modal:hover {
    color: #000;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content button {
    white-space: nowrap;
}

.success-message {
    background: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.success-message h4 {
    color: #2E7D32;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-left,
    .image-right {
        float: none;
        margin: 20px 0;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .content-section {
        padding: 40px 0;
    }
}
