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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 600px;
    padding: 80px 48px;
    background-color: #f1f8f4;
    position: relative;
}

.hero-text-block {
    width: 45%;
    padding-right: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1b4332;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #40916c;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image-float {
    position: absolute;
    right: 48px;
    top: 120px;
    width: 48%;
    background-color: #95d5b2;
}

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

.intro-asymmetric {
    display: flex;
    padding: 120px 48px;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    width: 55%;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1b4332;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.intro-visual {
    width: 40%;
    background-color: #d8f3dc;
}

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

.services-grid-offset {
    padding: 100px 48px;
    background-color: #f8f9fa;
}

.section-title-left {
    font-size: 48px;
    margin-bottom: 64px;
    color: #1b4332;
    margin-left: 0;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    width: calc(33.333% - 22px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #95d5b2;
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 16px;
    color: #2d6a4f;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    color: #495057;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1b4332;
    padding: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #52b788;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #40916c;
}

.trust-block-diagonal {
    display: flex;
    padding: 100px 48px;
    gap: 64px;
    align-items: center;
    background-color: #d8f3dc;
}

.trust-content {
    width: 50%;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1b4332;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.trust-image {
    width: 45%;
    background-color: #95d5b2;
}

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

.form-section-offset {
    padding: 100px 48px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin-left: 80px;
}

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1b4332;
}

.form-wrapper > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #495057;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #d8f3dc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #52b788;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

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

.footer-asymmetric {
    background-color: #1b4332;
    color: #d8f3dc;
    padding: 64px 48px 32px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-col {
    width: 30%;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #95d5b2;
}

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

.footer-col a {
    display: block;
    color: #d8f3dc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #95d5b2;
}

.footer-disclaimer {
    background-color: #14351f;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d6a4f;
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2d6a4f;
    padding: 24px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    font-size: 15px;
    color: #2c3e50;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background-color: #dee2e6;
}

.about-hero-offset {
    padding: 100px 48px 80px;
    background-color: #f1f8f4;
}

.about-hero-text {
    max-width: 800px;
    margin-left: 80px;
}

.about-hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1b4332;
}

.about-hero-text p {
    font-size: 22px;
    color: #40916c;
}

.about-story {
    display: flex;
    padding: 100px 48px;
    gap: 64px;
    align-items: center;
}

.story-image-left {
    width: 45%;
    background-color: #95d5b2;
}

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

.story-text-right {
    width: 50%;
}

.story-text-right h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1b4332;
}

.story-text-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.mission-diagonal {
    padding: 100px 48px;
    background-color: #d8f3dc;
}

.mission-diagonal h2 {
    font-size: 48px;
    margin-bottom: 64px;
    text-align: center;
    color: #1b4332;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.mission-item {
    width: calc(50% - 24px);
}

.mission-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.mission-item p {
    font-size: 17px;
    color: #495057;
}

.team-offset-layout {
    padding: 100px 48px;
}

.team-title {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1b4332;
    margin-left: 80px;
}

.team-description {
    max-width: 700px;
    margin-left: 80px;
    margin-bottom: 48px;
}

.team-description p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.team-visual {
    background-color: #95d5b2;
}

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

.values-section {
    padding: 100px 48px;
    background-color: #f8f9fa;
}

.values-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    color: #1b4332;
}

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

.values-list li {
    font-size: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #d8f3dc;
    color: #2c3e50;
}

.values-list li::before {
    content: "→ ";
    color: #2d6a4f;
    font-weight: 700;
    margin-right: 12px;
}

.services-hero {
    padding: 100px 48px 80px;
    background-color: #f1f8f4;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #1b4332;
}

.services-hero p {
    font-size: 22px;
    color: #40916c;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-offset.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

.service-detail-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1b4332;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d6a4f;
    margin: 32px 0 24px;
}

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

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

.cta-section-centered {
    padding: 100px 48px;
    text-align: center;
    background-color: #d8f3dc;
}

.cta-section-centered h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1b4332;
}

.cta-section-centered p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #40916c;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d6a4f;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.contact-hero {
    padding: 100px 48px 80px;
    background-color: #f1f8f4;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #1b4332;
}

.contact-hero p {
    font-size: 22px;
    color: #40916c;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 100px 48px;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1b4332;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.contact-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

.contact-note {
    background-color: #f1f8f4;
    padding: 24px;
    border-radius: 4px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #40916c;
}

.contact-visual {
    width: 50%;
    background-color: #95d5b2;
}

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

.contact-map-section {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    text-align: center;
    color: #1b4332;
}

.map-placeholder {
    background-color: #d8f3dc;
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 24px;
    color: #2d6a4f;
    margin-bottom: 16px;
}

.thanks-section {
    display: flex;
    padding: 120px 48px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    width: 55%;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1b4332;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.thanks-visual {
    width: 40%;
    background-color: #95d5b2;
}

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

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1b4332;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #40916c;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-offset {
        flex-direction: column;
        padding: 40px 24px;
    }

    .hero-text-block {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }

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

    .hero-image-float {
        position: static;
        width: 100%;
    }

    .intro-asymmetric,
    .trust-block-diagonal,
    .about-story,
    .service-detail-offset,
    .contact-layout-asymmetric,
    .thanks-section {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
    }

    .intro-narrow,
    .intro-visual,
    .trust-content,
    .trust-image,
    .story-image-left,
    .story-text-right,
    .service-detail-content,
    .service-detail-image,
    .contact-info-block,
    .contact-visual,
    .thanks-content,
    .thanks-visual {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .mission-item {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-col {
        width: 100%;
    }

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