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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1E4620;
    --primary-light: #4A8B4D;
    --accent-color: #C89B3F;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px 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.6;
    background: var(--bg-white);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 85vh;
    background: var(--bg-light);
}

.hero-text {
    flex: 1;
    padding: 6rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.intro-left {
    flex: 1;
    background: var(--bg-light);
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 4rem 4rem 4rem 5rem;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-right p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview {
    background: var(--bg-light);
    padding: 5rem 3rem;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.service-icon {
    background: var(--bg-light);
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 2rem 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-price {
    padding: 0 2rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service {
    margin: 0 2rem 2rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: calc(100% - 4rem);
}

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

.value-split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 4rem 5rem 4rem 4rem;
    background: var(--bg-white);
}

.value-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.value-points {
    margin-top: 2.5rem;
}

.point-item {
    margin-bottom: 2rem;
}

.point-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.point-item p {
    margin: 0;
    font-size: 1rem;
}

.value-image {
    flex: 1;
    background: var(--bg-light);
}

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

.testimonials-section {
    background: var(--bg-light);
    padding: 5rem 3rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--text-dark);
    font-style: normal;
}

.contact-form-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    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-color);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.disclaimer-section {
    background: var(--bg-light);
    padding: 3rem;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 8px;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--bg-white);
}

.footer-column p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 3rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 50vh;
    background: var(--bg-light);
}

.page-hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.page-hero-image {
    flex: 1;
    background: var(--primary-dark);
}

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

.story-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.story-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.story-content-centered p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-light);
}

.approach-image {
    flex: 1;
}

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

.approach-content {
    flex: 1;
    padding: 4rem;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
    margin-top: 2rem;
}

.approach-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.values-section-stacked {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.values-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-light);
}

.team-content {
    flex: 1;
    padding: 4rem;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
}

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

.cta-section-centered {
    text-align: center;
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.page-header-centered {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.page-header-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header-centered p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
    background: var(--bg-white);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
}

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

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

.service-detail-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-page-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
    padding: 0 3rem;
}

.contact-info-section {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-image-section {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info-centered {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    text-align: center;
}

.additional-info-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.additional-info-centered p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
    min-height: 60vh;
}

.thanks-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content-centered h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-main-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thanks-service-info {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.selected-service-text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-additional-info {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.legal-page-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--bg-white);
}

.legal-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-page-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-page-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

.legal-page-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .value-split-reverse,
    .form-container-split,
    .page-hero-split,
    .approach-split,
    .team-section-split,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-page-split {
        flex-direction: column;
    }

    .hero-text,
    .intro-right,
    .value-content,
    .approach-content,
    .team-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .services-grid-split,
    .testimonials-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card {
        min-width: 100%;
    }

    .main-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }

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

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

    .hero-text p {
        font-size: 1rem;
    }

    .section-header-center h2,
    .page-header-centered h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
}