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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fafafa;
    padding-top: 80px;
}

header {
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar {
    padding: 0 30px;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #48bb78;
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: #48bb78;
}

.hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 70px 20px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3748;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-block {
    background: white;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #48bb78;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d3748;
    font-weight: 700;
}

.content-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #4a5568;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
}

.content-block ul, .content-block ol {
    margin-left: 35px;
    margin-bottom: 25px;
}

.content-block li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.image-block {
    margin: 40px 0;
    text-align: center;
}

.image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #48bb78;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #38a169;
    transform: translateY(-3px);
    color: white;
}

footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 35px;
    margin-top: 70px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #48bb78;
}

.footer-section p, .footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    line-height: 2;
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-section a:hover {
    color: #48bb78;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 15px;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: white;
}

.cookie-btn.reject {
    background-color: #718096;
    color: white;
}

.cookie-btn.more {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.disclaimer {
    background-color: #fef5e7;
    border-left: 5px solid #f6ad55;
    padding: 25px;
    margin-bottom: 35px;
    border-radius: 6px;
}

.disclaimer p {
    margin: 0;
    color: #744210;
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 19px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-block {
        padding: 30px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 18px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}
