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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f9fafb;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 5%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 50px;
    padding-top: 80px;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a5568;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 60%;
    height: 70%;
    background-color: #e8f4e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-markers-diagonal {
    display: flex;
    justify-content: space-around;
    padding: 50px 8%;
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
    transform: skewY(-2deg);
    margin: 60px 0;
}

.trust-markers-diagonal .trust-item {
    text-align: center;
    transform: skewY(2deg);
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #4a5568;
}

.intro-offset {
    padding: 70px 5%;
    display: flex;
    justify-content: flex-end;
}

.intro-text-narrow {
    max-width: 650px;
    padding-left: 40px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.services-cards-staggered {
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card.card-left {
    flex-direction: row;
    margin-left: 0;
    margin-right: 15%;
}

.service-card.card-right {
    flex-direction: row-reverse;
    margin-right: 0;
    margin-left: 15%;
}

.service-card.card-center {
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.card-image-container {
    flex: 1;
    min-width: 350px;
    height: 320px;
    background-color: #e8f4e8;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .card-image-container img {
    transform: scale(1.05);
}

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

.card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

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

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

.form-section-overlap {
    padding: 90px 5%;
    background: linear-gradient(to right, #f0f9f0 50%, #ffffff 50%);
    margin-top: 80px;
}

.form-container-asymmetric {
    max-width: 900px;
    margin-left: 10%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 15px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.why-us-offset {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.why-content {
    flex: 1.2;
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefits-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    padding: 20px;
    background-color: #f7fafc;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.why-image-float {
    flex: 0.8;
    background-color: #e8f4e8;
}

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

.disclaimer-section {
    padding: 50px 5%;
    background-color: #f7fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.footer-asymmetric {
    display: flex;
    justify-content: space-between;
    padding: 60px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.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.6;
}

.cookie-content a {
    color: #a8d5a8;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #234d23;
}

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

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

.about-hero-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-hero-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.about-hero-image {
    flex: 1;
    background-color: #e8f4e8;
}

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

.story-section-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 70px 5%;
}

.story-section-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-section-narrow p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-offset {
    display: flex;
    padding: 80px 5%;
    gap: 50px;
    background-color: #f7fafc;
}

.values-image-left {
    flex: 0.9;
    background-color: #e8f4e8;
}

.values-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-content-right {
    flex: 1.1;
    padding-left: 30px;
}

.values-content-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section-staggered {
    padding: 70px 5%;
    background-color: #ffffff;
}

.team-section-staggered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.team-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
    min-width: 200px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #4a5568;
}

.approach-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-content > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
    opacity: 0.7;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.services-hero-diagonal {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2c5f2d 0%, #234d23 100%);
    color: #ffffff;
    text-align: center;
    transform: skewY(-2deg);
    margin-bottom: 80px;
}

.services-hero-diagonal h1 {
    font-size: 48px;
    margin-bottom: 20px;
    transform: skewY(2deg);
}

.services-hero-diagonal p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.service-detail-offset {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-content-left,
.service-detail-content-right {
    flex: 1;
}

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

.service-detail-content-left p,
.service-detail-content-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.service-price-prominent {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
}

.service-detail-image-left,
.service-detail-image-right {
    flex: 0.9;
    background-color: #e8f4e8;
}

.service-detail-image-left img,
.service-detail-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.cta-section-centered {
    text-align: center;
    padding: 80px 5%;
    background-color: #f7fafc;
}

.cta-section-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5568;
}

.contact-hero-minimal {
    padding: 80px 5%;
    text-align: center;
    background-color: #ffffff;
}

.contact-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero-minimal p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #4a5568;
}

.contact-info-asymmetric {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-block-offset-left {
    align-self: flex-start;
    max-width: 500px;
    padding-left: 10%;
}

.contact-block-offset-right {
    align-self: flex-end;
    max-width: 500px;
    padding-right: 10%;
}

.contact-block-centered {
    align-self: center;
    max-width: 600px;
}

.contact-block-offset-left h2,
.contact-block-offset-right h2,
.contact-block-centered h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.email-display {
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #718096;
    margin-top: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #4a5568;
}

.contact-cta-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f7fafc;
}

.cta-content-irregular {
    flex: 1;
}

.cta-content-irregular h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content-irregular p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

.cta-image-float {
    flex: 0.9;
    background-color: #e8f4e8;
}

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

.contact-info-additional {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-additional p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-section-centered {
    padding: 100px 5%;
    text-align: center;
    background-color: #ffffff;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-confirmation {
    font-size: 17px;
    font-weight: 600;
    color: #2c5f2d;
    margin: 25px 0;
    padding: 15px;
    background-color: #f0f9f0;
    border-radius: 4px;
}

.thanks-submessage {
    font-size: 16px;
    color: #718096;
}

.next-steps-section {
    padding: 70px 5%;
    background-color: #f7fafc;
}

.next-steps-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.step-number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-cta-section {
    padding: 70px 5%;
    text-align: center;
    background-color: #ffffff;
}

.thanks-cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a5568;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.link-button {
    padding: 14px 30px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.link-button:hover {
    background-color: #234d23;
    transform: translateY(-2px);
}

.link-button-secondary {
    padding: 14px 30px;
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.link-button-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.url-display {
    word-break: break-all;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }

    .service-card,
    .service-card.card-left,
    .service-card.card-right {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .card-image-container {
        width: 100%;
        min-width: auto;
    }

    .about-hero-split,
    .values-offset,
    .why-us-offset,
    .service-detail-offset,
    .contact-cta-section {
        flex-direction: column;
    }

    .footer-asymmetric {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

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

    .trust-markers-diagonal {
        flex-direction: column;
    }

    .team-stats {
        flex-direction: column;
        align-items: center;
    }
}