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

:root {
    --primary-color: #00695C;
    --bg-color: #FCFEFD;
    --text-color: #2C3E50;
    --light-gray: #F5F7F6;
    --shadow: 0 8px 20px rgba(0,0,0,0.05);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-color);
    background: linear-gradient(135deg, #FCFEFD 0%, #F5F9F8 100%);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--primary-color);
    margin-bottom: 24px;
}

h1 {
    font-size: 46px;
    line-height: 1.3;
}

h2 {
    font-size: 36px;
    line-height: 1.4;
}

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(252, 254, 253, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.35s ease-in-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.35s ease-in-out;
}

.logo:hover {
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.35s ease-in-out;
    white-space: nowrap;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

section {
    padding: 80px 0;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(252, 254, 253, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    margin-bottom: 28px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero p {
    font-size: 20px;
    margin-bottom: 36px;
}

.content-block {
    background: white;
    border-radius: 12px;
    padding: 56px 42px;
    margin-bottom: 36px;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

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

.content-with-image {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.content-with-image img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.image-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    margin-top: 36px;
}

.product-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease-in-out;
}

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

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s ease-in-out;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.faq-item {
    background: var(--light-gray);
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 16px;
}

.disclaimer-box {
    background: #FFF9E6;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 36px;
    margin: 36px 0;
}

.contact-form {
    background: white;
    padding: 42px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.35s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

footer {
    background: var(--primary-color);
    color: white;
    padding: 56px 0 28px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.35s ease-in-out;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
}

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

.modal-content {
    background: white;
    margin: 80px auto;
    padding: 56px;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 36px;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.35s ease-in-out;
}

.modal-close:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 28px;
    z-index: 1500;
    display: none;
}

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

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

.success-message {
    display: none;
    background: #D4EDDA;
    border: 2px solid #28A745;
    color: #155724;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    body {
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .content-with-image {
        flex-direction: column;
    }
    
    .content-with-image.reverse {
        flex-direction: column;
    }
    
    .content-with-image img {
        max-width: 100%;
    }
    
    .product-grid,
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 20px;
        padding: 32px 24px;
    }
    
    section {
        padding: 56px 0;
    }
    
    .content-block {
        padding: 36px 24px;
    }
}
