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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2c3e50;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 6% 80px 12%;
    background-color: #ffffff;
    min-height: 550px;
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    background-color: #e8ebe8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3a5a40;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2c4530;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    border: 2px solid #3a5a40;
    color: #3a5a40;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3a5a40;
    color: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 100px auto;
    padding: 0 6%;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.image-full {
    margin: 80px 0;
    background-color: #e8ebe8;
}

.image-full img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 6%;
    background-color: #f5f5f5;
}

.services-header-offset {
    max-width: 580px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.service-card-large {
    display: flex;
    margin-bottom: 40px;
    background-color: #ffffff;
    overflow: hidden;
}

.service-card-large img {
    width: 55%;
    height: 380px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card-large .service-content {
    width: 45%;
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-large h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-card-large p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 22px;
    color: #3a5a40;
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #3a5a40;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2c4530;
}

.service-card-small {
    display: flex;
    margin-bottom: 40px;
    background-color: #ffffff;
    overflow: hidden;
    max-width: 720px;
}

.service-card-small .service-content {
    width: 60%;
    padding: 38px 36px;
}

.service-card-small img {
    width: 40%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card-small h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card-small p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.service-card-medium {
    display: flex;
    margin-bottom: 40px;
    margin-left: auto;
    background-color: #ffffff;
    overflow: hidden;
    max-width: 860px;
}

.service-card-medium img {
    width: 48%;
    height: 340px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card-medium .service-content {
    width: 52%;
    padding: 42px 40px;
}

.service-card-medium h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-medium p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.service-card-small-right {
    display: flex;
    margin-bottom: 40px;
    margin-left: 15%;
    background-color: #ffffff;
    overflow: hidden;
    max-width: 680px;
}

.service-card-small-right .service-content {
    width: 65%;
    padding: 36px 32px;
}

.service-card-small-right img {
    width: 35%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card-small-right h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card-small-right p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.service-card-wide {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 38px;
    background-color: #ffffff;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content-left p,
.service-content-right p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.insight-section {
    display: flex;
    padding: 100px 6%;
    background-color: #ffffff;
    gap: 70px;
    align-items: center;
}

.insight-content {
    flex: 1.2;
}

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

.insight-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.7;
}

.insight-image {
    flex: 1;
    background-color: #e8ebe8;
}

.insight-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.testimonial-offset {
    padding: 80px 6% 80px 18%;
    background-color: #f9f9f9;
}

.testimonial-offset blockquote {
    max-width: 720px;
    border-left: 4px solid #3a5a40;
    padding-left: 32px;
}

.testimonial-offset p {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-offset cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.process-visual {
    padding: 100px 6%;
    background-color: #ffffff;
}

.process-visual h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.process-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.process-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.form-section-offset {
    padding: 100px 6% 100px 12%;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 620px;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 17px;
    color: #666;
    margin-bottom: 36px;
}

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

label {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
select,
textarea {
    padding: 14px;
    margin-bottom: 24px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3a5a40;
}

.submit-btn {
    padding: 16px 36px;
    background-color: #3a5a40;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #2c4530;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid #3e5466;
    padding-top: 24px;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px 6%;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
    min-width: 300px;
}

.cookie-content p a {
    color: #3a5a40;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #3a5a40;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2c4530;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.page-header-offset {
    padding: 100px 6% 60px 12%;
    background-color: #f9f9f9;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header-offset p {
    font-size: 20px;
    color: #666;
}

.about-content-asymmetric {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.about-text-main {
    flex: 1.3;
}

.about-text-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text-main p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-side {
    flex: 1;
    background-color: #e8ebe8;
}

.about-image-side img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.philosophy-section {
    padding: 80px 6%;
    background-color: #f5f5f5;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1 1 calc(33.333% - 34px);
    min-width: 260px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.philosophy-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.story-section {
    display: flex;
    padding: 80px 6%;
    gap: 70px;
    align-items: center;
    background-color: #ffffff;
}

.story-content {
    flex: 1.1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 1;
    background-color: #e8ebe8;
}

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

.values-offset {
    padding: 80px 6% 80px 14%;
    background-color: #f9f9f9;
}

.values-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 800px;
}

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    padding-left: 24px;
    border-left: 3px solid #3a5a40;
}

.cta-simple {
    padding: 100px 6%;
    text-align: center;
    background-color: #ffffff;
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.cta-simple p {
    font-size: 18px;
    color: #666;
    margin-bottom: 36px;
}

.services-detailed {
    padding: 60px 6%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8ebe8;
}

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

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

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

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

.service-includes {
    margin: 28px 0;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3a5a40;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 15px;
    color: #666;
}

.price-value {
    font-size: 26px;
    color: #3a5a40;
    font-weight: 600;
}

.service-cta {
    padding: 80px 6%;
    text-align: center;
    background-color: #f5f5f5;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

.contact-layout {
    display: flex;
    padding: 60px 6%;
    gap: 70px;
    background-color: #ffffff;
}

.contact-info-offset {
    flex: 1;
    padding-left: 6%;
}

.contact-info-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.email-display {
    color: #3a5a40;
    font-weight: 500;
}

.contact-note {
    margin-top: 48px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #3a5a40;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #e8ebe8;
}

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

.response-info {
    padding: 60px 6%;
    background-color: #f5f5f5;
}

.response-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.response-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.response-info a {
    color: #3a5a40;
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 6%;
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-service-reference {
    margin: 32px 0;
    padding: 20px;
    background-color: #f0f7f0;
    border-left: 4px solid #3a5a40;
}

.service-highlight {
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-image {
    margin: 48px 0;
    background-color: #e8ebe8;
}

.thanks-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3a5a40;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 6%;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content-left h1 {
        font-size: 40px;
    }

    .hero-image-right {
        width: 100%;
    }

    .service-card-large,
    .service-card-medium,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card-large img,
    .service-card-medium img,
    .service-detail-image img {
        width: 100%;
    }

    .service-card-large .service-content,
    .service-card-medium .service-content,
    .service-detail-content {
        width: 100%;
    }

    .insight-section,
    .story-section,
    .about-content-asymmetric,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
}

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

    .nav-right {
        gap: 20px;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .page-header-offset h1 {
        font-size: 36px;
    }

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

    .service-card-small .service-content,
    .service-card-small-right .service-content,
    .service-card-small img,
    .service-card-small-right img {
        width: 100%;
    }

    .service-card-wide {
        flex-direction: column;
    }

    .process-item {
        flex: 1 1 100%;
    }

    .philosophy-item {
        flex: 1 1 100%;
    }

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

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