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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 900;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.hero-asymmetric {
    display: flex;
    flex-direction: row;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 60px 60px 80px;
    display: flex;
    align-items: center;
    background-color: #f4f7f5;
}

.hero-text-block {
    max-width: 520px;
}

.hero-text-block h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
    margin-bottom: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.insight-block-left {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.container-asymmetric.reverse {
    flex-direction: row-reverse;
    margin-top: 80px;
}

.content-narrow {
    flex: 1;
    padding-top: 40px;
}

.content-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.image-stack-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.image-stack-right img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.services-intro {
    background-color: #f9fafb;
    padding: 90px 40px 100px;
}

.services-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header-centered h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-centered p {
    font-size: 18px;
    color: #5a5a5a;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image-bg {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.form-section-diagonal {
    background: linear-gradient(135deg, #2d5f3f 0%, #1e4028 100%);
    padding: 90px 40px;
    position: relative;
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
    color: #ffffff;
}

.form-intro-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.main-form {
    flex: 1.3;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #2d5f3f;
}

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.trust-block-centered {
    background-color: #f4f7f5;
    padding: 80px 40px;
}

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

.testimonial-container blockquote {
    font-size: 21px;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 20px;
    quotes: "\201C" "\201D";
}

.testimonial-container blockquote::before {
    content: open-quote;
    font-size: 48px;
    color: #2d5f3f;
    margin-right: 8px;
}

.testimonial-container cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.info-block-right-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: center;
}

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

.info-image-left img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.info-content-narrow {
    flex: 1;
}

.info-content-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-content-narrow p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.footer-multi-column {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 40px;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-cookie {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero-minimal {
    padding: 160px 60px 80px;
    background-color: #f4f7f5;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero-minimal p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-asymmetric {
    background-color: #ffffff;
}

.container-offset-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.about-block-left {
    flex: 1;
}

.about-block-left h2,
.about-block-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-block-left p,
.about-block-right p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-image-right-overlap,
.about-image-left-overlap {
    flex: 1;
    position: relative;
}

.about-image-right-overlap img,
.about-image-left-overlap img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.about-block-right {
    flex: 1;
}

.about-block-full-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.about-block-full-width h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.expertise-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 360px;
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5f3f;
    font-weight: 600;
}

.expertise-item p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.about-principles {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f9fafb;
}

.about-principles h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.principles-list li {
    font-size: 17px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2a2a2a;
    position: relative;
    padding-left: 30px;
}

.principles-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.about-team-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-team-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-team-intro p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detail-layout {
    background-color: #ffffff;
    padding: 60px 40px 80px;
}

.service-detail-item {
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2d5f3f;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #5a5a5a;
    line-height: 1.6;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.service-pricing-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.contact-layout {
    padding: 80px 40px 100px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-block {
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-info-block p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-note p {
    font-size: 15px;
    color: #5a5a5a;
    font-style: italic;
}

.thanks-page-content {
    padding: 120px 40px 100px;
    background-color: #f9fafb;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 30px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #f4f7f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2d5f3f;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ul {
    padding-left: 20px;
}

.thanks-next-steps ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #5a5a5a;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5f3f;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #f4f7f5;
    transform: translateY(-2px);
}

.legal-page-content {
    padding: 80px 40px 100px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 14px;
    color: #2d5f3f;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #5a5a5a;
    line-height: 1.6;
}

.legal-container a {
    color: #2d5f3f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #234a30;
}

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .container-asymmetric,
    .container-split,
    .container-offset-wide,
    .service-detail-item {
        flex-direction: column;
    }

    .form-container-offset {
        flex-direction: column;
    }

    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

    .nav-brand {
        margin-bottom: 0;
    }
}

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

    .services-header-centered h2,
    .content-narrow h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .nav-links {
        flex-direction: column;
    }
}
