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

:root {
    --primary: #2d5a3d;
    --secondary: #8fb569;
    --accent: #c75c41;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

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

nav {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid #dee2e6;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.8), rgba(199, 92, 65, 0.6));
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a84833;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 92, 65, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
}

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

section {
    padding: 80px 0;
}

.section-story {
    background: var(--light);
    padding: 100px 0;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    line-height: 1.3;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #333;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
    background-color: var(--secondary);
}

.section-problem {
    background: white;
}

.problem-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.problem-text ul {
    list-style: none;
    margin: 30px 0;
}

.problem-text li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.problem-text li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: bold;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--secondary);
}

.section-solution {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.section-solution h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.solution-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.solution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.solution-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-services {
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img-wrapper {
    flex: 1;
    min-width: 300px;
}

.service-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--secondary);
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 20px 0;
}

.service-price-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.service-cta {
    margin-top: 25px;
}

.section-testimonials {
    background: var(--light);
    position: relative;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.testimonials-content {
    position: relative;
    z-index: 1;
}

.testimonials-content h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

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

.section-form {
    background: white;
    padding: 100px 0;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--gray);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 35px;
}

.disclaimer {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 30px;
    margin: 60px 0;
    border-radius: 4px;
}

.disclaimer h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.references {
    background: var(--light);
    padding: 50px 0;
}

.references h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.references ol {
    list-style-position: inside;
}

.references li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}

.references a:hover {
    text-decoration: underline;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

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

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

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

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

.cookie-accept:hover {
    background: var(--primary);
}

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

.cookie-reject:hover {
    background: white;
    color: var(--dark);
}

.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: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.legal-page {
    padding: 80px 0;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary);
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-section {
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--secondary);
}

.citation {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--primary);
}

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .problem-wrapper,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    section {
        padding: 50px 0;
    }

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