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

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #2c3e2f;
    background: #fff;
}

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

header {
    background: #1a2e1f;
    color: white;
    padding: 20px 0;
    border-bottom: 4px solid #c9a03d;
}

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

.logo-name {
    font-size: 1.9rem;
    font-weight: 700;
    display: block;
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 0.8rem;
    opacity: 0.85;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #c9a03d;
}

.hero {
    background: linear-gradient(135deg, #f5f7ef 0%, #e2e7da 100%);
    padding: 60px 0;
    border-bottom: 1px solid #ccc;
}

.hero h1 {
    font-size: 2.5rem;
    color: #1a2e1f;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #c9a03d;
    color: #1a2e1f;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.2s;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a2e1f;
    border-left: 6px solid #c9a03d;
    padding-left: 20px;
}

.services-grid,
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card,
.diff-item {
    background: #fafaf7;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e2dc;
}

.process-steps {
    background: #f0f2ea;
    padding: 30px;
    border-radius: 20px;
}

.step {
    margin-bottom: 25px;
    border-left: 4px solid #c9a03d;
    padding-left: 20px;
}

.faq-home .faq-item {
    margin-bottom: 25px;
    background: #fefcf5;
    padding: 20px;
    border-radius: 12px;
}

footer {
    background: #1a2e1f;
    color: #ddd;
    padding: 40px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #c9a03d;
    text-decoration: none;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c3e2f;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#accept-cookies {
    background: #c9a03d;
    border: none;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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