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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #1a8fe3;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-offset {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content-left {
    width: 42%;
    padding: 80px 40px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e4420;
}

.hero-image-right {
    width: 58%;
    position: relative;
    background-color: #d4e4d1;
}

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

.intro-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
    position: relative;
}

.content-block-overlap {
    width: 55%;
    padding-right: 40px;
}

.content-block-overlap h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-block-overlap p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.image-float {
    width: 45%;
    background-color: #d4e4d1;
}

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

.services-grid-irregular {
    padding: 120px 60px;
    background-color: var(--bg-light);
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    padding-left: 100px;
    color: var(--text-dark);
    font-weight: 800;
}

.service-card {
    display: flex;
    margin-bottom: 40px;
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card.card-large {
    margin-left: 0;
    margin-right: 120px;
}

.service-card.card-medium {
    margin-left: 100px;
    margin-right: 40px;
}

.card-visual {
    width: 45%;
    background-color: #d4e4d1;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    width: 55%;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
}

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

.card-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

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

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

.btn-select:hover {
    background-color: #1570b8;
}

.trust-block-stacked {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.trust-text {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 80px;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.trust-stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 100px;
    background-color: var(--bg-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    max-width: 180px;
}

.form-section-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    background-color: var(--bg-white);
}

.form-intro {
    width: 38%;
    padding-top: 20px;
}

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

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

.contact-form {
    width: 62%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 50px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1e4420;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: #e0e0e0;
    padding: 70px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #3a3a3a;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 280px;
}

.footer-col a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 25px 60px;
    display: none;
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
}

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

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

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

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: #1e4420;
}

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

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

.page-header-offset {
    padding: 120px 60px 60px 120px;
    background-color: var(--bg-light);
}

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

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

.about-content-irregular {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.content-split-left {
    width: 48%;
    padding-right: 20px;
}

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

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

.image-block-right {
    width: 52%;
    background-color: #d4e4d1;
}

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

.values-stacked {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.value-blocks {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-diagonal {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.team-intro {
    max-width: 700px;
    margin-bottom: 50px;
    padding-left: 100px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.team-image {
    width: 100%;
    margin-left: 60px;
    background-color: #d4e4d1;
}

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

.mission-block {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--bg-white);
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.service-detail-block {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

.service-detail-block.block-left {
    flex-direction: row;
}

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

.service-detail-image {
    width: 45%;
    background-color: #d4e4d1;
}

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

.service-detail-content {
    width: 55%;
}

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

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    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 {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
}

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

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

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

.cta-services h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.btn-cta-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #1e4420;
}

.contact-layout {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: var(--bg-white);
}

.contact-info-offset {
    width: 45%;
}

.contact-info-offset h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.contact-image-visual {
    width: 55%;
    background-color: #d4e4d1;
}

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

.thanks-section {
    display: flex;
    min-height: 500px;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    width: 50%;
}

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 15px;
    color: var(--text-light);
}

.btn-return {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-return:hover {
    background-color: #1e4420;
}

.thanks-visual {
    width: 50%;
    background-color: #d4e4d1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

@media (max-width: 768px) {
    .hero-offset,
    .intro-diagonal,
    .about-content-irregular,
    .service-detail-block,
    .contact-layout,
    .thanks-section,
    .form-section-diagonal {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right,
    .content-block-overlap,
    .image-float,
    .content-split-left,
    .image-block-right,
    .service-detail-image,
    .service-detail-content,
    .contact-info-offset,
    .contact-image-visual,
    .thanks-content,
    .thanks-visual,
    .form-intro,
    .contact-form {
        width: 100%;
    }

    .value-blocks {
        flex-direction: column;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }
}