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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #5a8c6f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 32px;
}

.logo-section {
    flex-shrink: 0;
}

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

.main-nav {
    flex: 1;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    justify-content: center;
}

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

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

.ad-disclosure {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--text-light);
    max-width: 180px;
    text-align: right;
    line-height: 1.3;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-text-content {
    max-width: 540px;
}

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

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

.hero-right {
    flex: 1;
    background-color: #e8ebe8;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

.intro-asymmetric {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image {
    flex: 0 0 45%;
    background-color: #e8ebe8;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

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

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

.services-preview {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 64px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card-split {
    display: flex;
    gap: 48px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.service-image-container {
    flex: 0 0 45%;
    background-color: #e8ebe8;
    position: relative;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

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

.service-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #c49564;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.form-wrapper-split {
    display: flex;
    gap: 60px;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
}

.form-intro {
    flex: 0 0 35%;
}

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

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.main-form {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.indicator-item {
    text-align: center;
}

.indicator-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.indicator-label {
    font-size: 18px;
    opacity: 0.9;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 100px 0;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.values-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 0 0 calc(50% - 16px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-approach {
    padding: 100px 0;
}

.team-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

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

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

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.cta-content-centered {
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content-centered p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8ebe8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 8px;
    font-weight: 700;
}

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

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

.contact-split-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.contact-visual {
    flex: 1;
    background-color: #e8ebe8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.contact-cta {
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

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

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.thanks-section {
    padding: 100px 0;
    min-height: 500px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
}

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

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

.next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-image {
        flex: none;
        width: 100%;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .service-image-container {
        flex: none;
        width: 100%;
        min-height: 300px;
    }

    .form-wrapper-split {
        flex-direction: column;
    }

    .form-intro {
        flex: none;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 0 0 calc(50% - 24px);
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        width: 100%;
    }

    .contact-split-layout {
        flex-direction: column;
    }

    .values-grid-split {
        flex-direction: column;
    }

    .value-card {
        flex: none;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        flex: 100%;
    }

    .main-nav ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-disclosure {
        font-size: 10px;
        max-width: 140px;
    }

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

    .hero-text-content p {
        font-size: 16px;
    }

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

    .section-header-offset h2 {
        font-size: 32px;
    }

    .indicators-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .footer-column {
        flex: none;
    }

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

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

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

    .cta-split-layout {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}