* {
    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: #fafafa;
}

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    flex-wrap: wrap;
}

.logo-zone .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    background-color: #fff3cd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
}

.nav-floating {
    padding: 0 5% 1rem 5%;
}

.nav-floating ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-floating ul li a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-floating ul li a:hover {
    color: #2d5016;
}

.main-asymmetric {
    min-height: 60vh;
}

.hero-offset {
    position: relative;
    margin-bottom: 4rem;
}

.hero-visual {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 10%;
    left: 8%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-left: 5px solid #4a7c2f;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2d5016;
    margin-bottom: 1rem;
}

.hero-text-overlay p {
    font-size: 1.15rem;
    color: #555;
}

.intro-block-left {
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.content-wrap {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.text-column-narrow {
    flex: 1 1 500px;
}

.text-column-narrow h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-column-narrow p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

.image-column-offset {
    flex: 1 1 400px;
    height: 600px;
    overflow: hidden;
}

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

.service-grid-staggered {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section-header-offset h2 {
    font-size: 2.2rem;
    color: #2d5016;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    flex-wrap: wrap;
}

.card-elevated-left {
    margin-left: 0;
    margin-right: 10%;
}

.card-elevated-right {
    margin-left: 10%;
    margin-right: 0;
}

.service-image {
    flex: 1 1 400px;
    height: 400px;
    overflow: hidden;
}

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

.service-info {
    flex: 1 1 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1rem;
    color: #555;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7c2f;
    margin: 1rem 0;
}

.btn-select-service {
    background-color: #4a7c2f;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #3d6625;
}

.trust-section-diagonal {
    background-color: #2d5016;
    color: #ffffff;
    padding: 5rem 10%;
    transform: skewY(-2deg);
    margin: 5rem 0;
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

.diagonal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.diagonal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 3rem 5%;
    background-color: #f9f9f9;
}

.testimonial-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid #4a7c2f;
}

.testimonial-wrap blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
}

.testimonial-wrap cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.form-section-offset {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 3rem;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c2f;
}

.btn-submit {
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5%;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background-color: #4a7c2f;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #3d6625;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #34495e;
}

.about-hero-split {
    display: flex;
    gap: 0;
    min-height: 500px;
    flex-wrap: wrap;
}

.about-text-block {
    flex: 1 1 500px;
    padding: 5rem;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-block h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-block p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.about-image-block {
    flex: 1 1 500px;
    overflow: hidden;
}

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

.philosophy-offset {
    padding: 5rem 10%;
    background-color: #ffffff;
}

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

.content-wrapper-narrow h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.content-wrapper-narrow p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #4a7c2f;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-story {
    padding: 5rem 10%;
    background-color: #ffffff;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.cta-about {
    padding: 4rem 5%;
    background-color: #2d5016;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.btn-cta-inline {
    display: inline-block;
    background-color: #4a7c2f;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta-inline:hover {
    background-color: #5f9340;
}

.services-header {
    padding: 4rem 5%;
    background-color: #f5f5f5;
    text-align: center;
}

.services-header h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: #555;
}

.service-detail-layout {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1 1 400px;
    height: 400px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-description {
    flex: 1 1 500px;
}

.service-description h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-description p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-description ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-description ul li {
    margin-bottom: 0.5rem;
    color: #444;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c2f;
    margin: 1.5rem 0;
}

.services-cta {
    padding: 4rem 5%;
    background-color: #f5f5f5;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-header {
    padding: 4rem 5%;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.15rem;
    color: #555;
}

.contact-info-layout {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: #ffffff;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h2 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1 1 500px;
    height: 500px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-approach {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

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

.approach-content h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 4px solid #4a7c2f;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

.contact-map-note {
    padding: 2rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.contact-map-note p {
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
}

.thanks-message {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: #ffffff;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1 1 500px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.thanks-visual {
    flex: 1 1 400px;
    height: 400px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.next-steps {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-timeline {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #4a7c2f;
}

.timeline-item h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
}

.legal-page {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #4a7c2f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-text-overlay {
        position: static;
        width: 100%;
        max-width: none;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .content-wrap {
        flex-direction: column;
    }

    .card-elevated-left,
    .card-elevated-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .about-text-block {
        padding: 3rem 1.5rem;
    }

    .nav-floating ul {
        gap: 1rem;
    }
}