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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1e3d29;
    --accent-color: #6b9e78;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e5e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

.nav-main {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-split {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.split-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: var(--text-dark);
    font-weight: 600;
}

.split-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary.large {
    padding: 20px 48px;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.insight-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.problem-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.problem-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.feature-list {
    list-style: none;
    margin: 24px 0 32px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    font-size: 17px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.pricing-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 48px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--primary-dark);
}

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

blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

cite {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
    margin-top: 16px;
}

.extended-services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.extended-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-alt {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card-alt h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.price-alt {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.service-card-alt p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--primary-color);
    padding: 80px 60px;
    border-radius: 12px;
    color: white;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-box .cta-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .cta-primary:hover {
    background: var(--bg-light);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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-color);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    border-color: white;
}

.page-hero {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.step p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-detail {
    padding: 80px 20px;
    background: var(--bg-white);
}

.service-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
}

.service-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-block.reverse .service-content-split {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 16px 0 24px;
}

.service-info p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-info ul {
    list-style: none;
    margin: 20px 0 32px 0;
}

.service-info ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.contact-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    padding: 100px 20px;
    background: var(--bg-light);
}

.map-placeholder h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-box p {
    color: var(--text-light);
    font-size: 17px;
}

.thanks-section {
    padding: 120px 20px;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-info {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-page .updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-page ul li {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .split-container,
    .split-container.reverse,
    .service-content-split,
    .service-block.reverse .service-content-split,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .pricing-grid,
    .service-cards,
    .problem-grid {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}