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

:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #8b9a6d;
    --accent: #d4a853;
    --text-dark: #2c2c2c;
    --text-light: #f8f7f4;
    --bg-cream: #faf9f6;
    --bg-sage: #e8ede3;
    --bg-moss: #d1dbc6;
    --shadow: rgba(45, 90, 61, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.nav-header {
    background: var(--primary-dark);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-toggle {
    display: block;
    background: none;
    border: 2px solid var(--text-light);
    padding: 8px 15px;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}

.nav-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li a {
    color: var(--text-light);
    padding: 10px;
    display: block;
    transition: background 0.3s;
    border-radius: 4px;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.1);
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="15" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="70" r="20" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="8" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: 300px 300px;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.hero-content h1 strong {
    font-weight: 700;
    display: block;
    font-size: 1.3em;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #c49943;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

.section {
    padding: 70px 0;
}

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

.section-dark {
    background: var(--primary-dark);
    color: var(--text-light);
}

.section-moss {
    background: var(--bg-moss);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 40px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.intro-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    min-height: 300px;
    background: linear-gradient(45deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.intro-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M0,100 Q50,60 100,80 T200,70 L200,100 Z" fill="rgba(255,255,255,0.1)"/><path d="M0,100 Q30,70 80,85 T200,75 L200,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

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

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--bg-sage);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-content p {
    color: #666;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-moss);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.contact-form-wrapper {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info-block {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-sage);
    border-radius: 12px;
}

.contact-info-block h4 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--text-dark);
}

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

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.page-header {
    background: var(--primary-dark);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.8;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.content-section h3 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: var(--primary-dark);
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-section ul li {
    margin-bottom: 8px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.thanks-content p {
    margin-bottom: 25px;
    color: #666;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-block {
    min-height: 280px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-image-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path d="M0,300 L100,250 L200,280 L300,220 L400,260 L400,300 Z" fill="rgba(255,255,255,0.1)"/><circle cx="350" cy="50" r="30" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="80" r="20" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.value-card h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-member {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.team-member h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--accent);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .nav-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 5px;
    }

    .nav-menu li a {
        padding: 10px 18px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .intro-block {
        flex-direction: row;
        align-items: center;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .testimonials-wrapper {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .about-story > * {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        min-width: 320px;
    }

    .features-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: 280px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 250px;
    }
}
