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

:root {
    --primary: #1a1a1a;
    --secondary: #2c5f4f;
    --accent: #8b7355;
    --light: #f5f5f0;
    --text: #333;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

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

.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 60px 40px;
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-accent {
    background: linear-gradient(135deg, #2c5f4f 0%, #1e4335 100%);
    color: #fff;
}

.story-section {
    padding: 100px 20px;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-content h3 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: var(--secondary);
}

.story-content p {
    margin-bottom: 25px;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 50px 0;
    background-color: #ddd;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-content ul {
    list-style: none;
    margin: 30px 0;
}

.split-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.split-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.split-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #ddd;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.testimonial-section {
    padding: 100px 20px;
    background: var(--light);
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.cta-block {
    text-align: center;
    padding: 80px 20px;
}

.cta-block h2 {
    font-size: 44px;
    margin-bottom: 25px;
}

.cta-block p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ddd;
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}

.form-group select {
    cursor: pointer;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1e4335;
}

.disclaimer {
    background: #fffbf0;
    border: 1px solid #e6d9b8;
    padding: 30px;
    border-radius: 6px;
    margin: 60px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 15px;
}

footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-accept:hover {
    background: #1e4335;
}

.cookie-reject {
    background: #f0f0f0;
    color: var(--text);
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.info-item {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reference {
    font-size: 12px;
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px dotted var(--secondary);
}

.reference:hover {
    border-bottom-style: solid;
}

.references-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.references-list {
    list-style: none;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

    .split-section {
        flex-direction: column;
    }

    .split-image {
        width: 100%;
        height: 350px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }
}
