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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #8b5a2b;
}

.nav-cta {
    background: #8b5a2b;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 5px;
}

.nav-cta:hover {
    background: #6d4522 !important;
}

.hero {
    background: linear-gradient(135deg, #fdf8f3 0%, #f5ebe0 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 15px;
}

.hero-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #8b5a2b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #6d4522;
    transform: translateY(-2px);
}

.btn-primary {
    background: #8b5a2b;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.section {
    padding: 70px 0;
}

.section-alt {
    background: #fafafa;
}

.section h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #444;
}

.feature-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-list span {
    color: #666;
    font-size: 0.95rem;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.column ul {
    list-style: none;
}

.column li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.column-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8b5a;
    font-weight: bold;
}

.column-no li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #999;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8b5a2b;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.section-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5266 100%);
    text-align: center;
    padding: 80px 0;
}

.section-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.section-cta p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer {
    background: #2c3e50;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.footer-name {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    font-size: 0.9rem;
}

.footer-contact a {
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
