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

:root {
    --color-primary: #2c5f2d;
    --color-primary-light: #3a7a3c;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-bg: #fefefe;
    --color-bg-alt: #f5f7f5;
    --color-border: #e0e4e0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-size: 17px;
}

.ad-disclosure {
    background-color: var(--color-bg-alt);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    padding: 120px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.hero-title-large {
    font-family: var(--font-heading);
    font-size: 68px;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.5;
}

.hero-image-offset {
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-offset img {
    width: 100%;
    display: block;
}

.intro-spacious {
    padding: 100px 60px;
    background-color: var(--color-bg-alt);
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.container-center {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.text-lead {
    font-size: 28px;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 300;
}

.philosophy-section {
    padding: 120px 0;
}

.philosophy-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--color-text);
}

.section-heading-center {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
    color: var(--color-text);
}

.section-heading-left {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--color-text);
}

.philosophy-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.services-preview {
    padding: 120px 0;
}

.services-cards-minimal {
    display: flex;
    gap: 60px;
    margin-bottom: 70px;
}

.service-card-minimal {
    flex: 1;
    text-align: center;
}

.service-card-minimal img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 2px;
    background-color: var(--color-bg-alt);
}

.service-card-minimal h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 18px;
    border: 2px solid var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.consultation-form-section {
    padding: 120px 0;
    background-color: var(--color-bg-alt);
}

.text-center-sub {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-family: var(--font-main);
    background-color: white;
    color: var(--color-text);
}

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

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

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

.values-section {
    padding: 120px 0;
}

.values-offset {
    display: flex;
    gap: 80px;
    align-items: center;
}

.values-image-left {
    flex: 1;
}

.values-image-left img {
    width: 100%;
    border-radius: 2px;
}

.values-text-right {
    flex: 1;
}

.values-text-right h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 400;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 20px 0;
    font-size: 20px;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.values-list li:last-child {
    border-bottom: none;
}

.footer {
    background-color: var(--color-text);
    color: #ffffff;
    padding: 80px 0 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 60px;
    font-size: 13px;
    line-height: 1.6;
    color: #999999;
    border-top: 1px solid #333333;
    padding-top: 40px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: white;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie {
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-reject {
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-header-minimal {
    padding: 100px 60px 60px;
}

.page-title-large {
    font-family: var(--font-heading);
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.page-subtitle {
    font-size: 22px;
    color: var(--color-text-light);
    text-align: center;
    font-weight: 300;
}

.content-section-spacious {
    padding: 80px 60px;
}

.text-emphasis {
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 30px;
    font-weight: 300;
}

.content-section-spacious p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.image-full-width {
    margin: 80px 0;
}

.image-full-width img {
    width: 100%;
    display: block;
}

.content-columns {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.content-column {
    flex: 1;
}

.content-column h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.approach-section {
    padding: 120px 0;
    background-color: var(--color-bg-alt);
}

.approach-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.approach-list {
    list-style: none;
    margin: 30px 0;
}

.approach-list li {
    padding: 15px 0 15px 30px;
    font-size: 18px;
    color: var(--color-text-light);
    position: relative;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 2px;
}

.leadership-section {
    padding: 100px 60px;
}

.text-center-lead {
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-section p {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.principles-visual {
    padding: 120px 0;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.principle-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.principle-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.cta-section-simple {
    padding: 100px 60px;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.cta-section-simple h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-text {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    padding: 60px 60px 40px;
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section.alt-layout {
    background-color: var(--color-bg-alt);
}

.service-detail-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 2px;
    background-color: var(--color-bg-alt);
}

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

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
}

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

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

.service-features li {
    padding: 12px 0 12px 25px;
    font-size: 17px;
    color: var(--color-text-light);
    position: relative;
}

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

.service-pricing {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 2px solid var(--color-border);
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: var(--color-text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-note-section {
    padding: 60px 60px 40px;
    background-color: var(--color-bg-alt);
}

.pricing-note {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    font-style: italic;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info-main {
    flex: 2;
}

.contact-additional {
    flex: 1;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-text);
}

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

.note-text {
    font-size: 15px;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-card {
    margin-bottom: 40px;
}

.contact-card img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 2px;
}

.contact-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.contact-note {
    background-color: var(--color-bg-alt);
    padding: 25px;
    border-radius: 2px;
}

.contact-note h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-additional {
    padding: 80px 60px;
    background-color: var(--color-bg-alt);
}

.legal-additional h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-additional h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

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

.thanks-title {
    font-family: var(--font-heading);
    font-size: 54px;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-message {
    font-size: 22px;
    color: var(--color-text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

.service-confirmation {
    margin-bottom: 50px;
    padding: 25px;
    background-color: var(--color-bg-alt);
    border-radius: 2px;
    font-size: 18px;
    color: var(--color-text);
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 20px 0 20px 50px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 18px;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.thanks-image {
    margin: 60px 0;
}

.thanks-image img {
    width: 100%;
    border-radius: 2px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
}

.thanks-contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.thanks-contact-info p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.email-display {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
}

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

.legal-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    font-size: 15px;
    color: var(--color-text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        padding: 30px 30px;
        gap: 25px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-minimal {
        padding: 60px 30px 40px;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .intro-spacious {
        padding: 60px 30px;
    }

    .text-lead {
        font-size: 22px;
    }

    .philosophy-section {
        padding: 60px 30px;
    }

    .philosophy-grid {
        flex-direction: column;
        gap: 40px;
    }

    .section-heading,
    .section-heading-center,
    .section-heading-left {
        font-size: 36px;
    }

    .services-preview {
        padding: 60px 30px;
    }

    .services-cards-minimal {
        flex-direction: column;
        gap: 40px;
    }

    .consultation-form-section {
        padding: 60px 30px;
    }

    .values-section {
        padding: 60px 30px;
    }

    .values-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-disclaimer {
        padding: 40px 30px 30px;
    }

    .footer-bottom {
        padding: 0 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-title-large {
        font-size: 42px;
    }

    .approach-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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