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

:root {
    --primary-color: #2d5a4a;
    --secondary-color: #4a7a66;
    --accent-color: #8fb3a3;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9f7;
    --background-white: #ffffff;
    --border-color: #e0e4e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.ad-notice {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--background-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

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

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

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.image-left,
.image-right {
    flex: 1;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

.image-left img,
.image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-layout h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.intro-section {
    background-color: var(--background-white);
}

.insight-section {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.full-width-content {
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

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

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

.services-preview {
    background-color: var(--background-white);
}

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

.service-list li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    font-size: 17px;
    color: var(--text-medium);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.testimonial-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container blockquote {
    margin: 0;
}

.testimonial-container p {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-container cite {
    font-size: 16px;
    color: var(--accent-color);
    font-style: normal;
}

.cta-form-section {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.form-container {
    flex: 1;
}

.service-form {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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;
    min-height: 100px;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 24px;
    box-shadow: 0 -4px 20px var(--shadow-medium);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.hero-text-left {
    flex: 1;
    padding-right: 40px;
}

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

.hero-text-left p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
}

.hero-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.story-section {
    padding: 100px 40px;
    background-color: var(--background-white);
}

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

.content-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.values-section {
    background-color: var(--background-white);
    padding: 100px 40px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background-color: var(--background-light);
    border-radius: 8px;
}

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

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

.team-section {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-container p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 32px;
}

.page-header {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
}

.services-grid-section {
    padding: 60px 40px 100px;
    background-color: var(--background-white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-content {
    flex: 1;
}

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

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

.service-price {
    margin: 28px 0;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-medium);
}

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

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

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

.process-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.process-steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

.contact-page {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

.email-text {
    color: var(--text-medium);
    font-weight: 500;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 6px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
    max-height: 700px;
}

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

.thanks-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

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

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

.legal-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

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

.cookie-table thead {
    background-color: var(--background-light);
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-table td {
    padding: 14px;
    font-size: 15px;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

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

    .hero-content {
        padding: 60px 40px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 50px;
        padding: 60px 40px;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .contact-info {
        padding-right: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

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

    .split-layout h2,
    .content-narrow h2 {
        font-size: 30px;
    }

    .full-width-content h2 {
        font-size: 32px;
    }

    .insight-grid,
    .values-grid,
    .process-steps,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }
}