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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.96);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

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

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e6;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f0f0ee;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #4a7c59;
}

.hero-asymmetric {
    min-height: 85vh;
    background: #f5f5f3;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-block {
    max-width: 620px;
    margin-left: 8%;
    padding-top: 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-image-offset {
    width: 75%;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -2rem;
    background-color: #d4c5b9;
}

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

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

.story-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-block {
    flex: 1;
}

.story-primary {
    padding-top: 3rem;
}

.story-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.story-primary p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #3a3a3a;
}

.citation {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #3d6749;
}

.story-secondary {
    background-color: #e8dfd6;
}

.story-secondary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-offset {
    padding: 6rem 2rem;
    background: #f8f6f3;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-image-left {
    width: 45%;
    margin-left: -3rem;
    background-color: #c9b8a8;
}

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

.insight-text-right {
    flex: 1;
    padding-right: 2rem;
}

.insight-text-right h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.15;
}

.insight-text-right p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #3d6749;
}

.testimonial-scattered {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    padding: 2.5rem;
    background: #f5f5f3;
    border-left: 4px solid #4a7c59;
}

.testimonial-offset-1 {
    margin-top: 2rem;
}

.testimonial-offset-2 {
    margin-top: -1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4a7c59;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #fafaf8;
}

.services-header-offset {
    max-width: 700px;
    margin: 0 auto 4rem 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.service-card-1, .service-card-4 {
    width: calc(30% - 1rem);
    margin-top: 2rem;
}

.service-card-2, .service-card-5 {
    width: calc(35% - 1rem);
}

.service-card-3 {
    width: calc(30% - 1rem);
    margin-top: -1rem;
}

.service-card-6 {
    width: calc(30% - 1rem);
    margin-top: 3rem;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.service-card.selected {
    border: 3px solid #4a7c59;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: #f5f5f3;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-form-offset {
    background: #fff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-left: -5%;
}

.contact-form-offset input,
.contact-form-offset textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d0d0ce;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form-offset input:focus,
.contact-form-offset textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.contact-form-offset input[readonly] {
    background: #f5f5f3;
    color: #2c2c2c;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #3d6749;
}

.trust-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.main-footer {
    background: #2c2c2c;
    color: #e0e0de;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #e0e0de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f4c96d;
}

.reference-list {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0ae;
}

.reference-list a {
    color: #f4c96d;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0ae;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

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

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

.thanks-service {
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #3d6749;
}

.page-header {
    background: #f5f5f3;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #3a3a3a;
}

.content-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    color: #3a3a3a;
}

.contact-info {
    background: #f5f5f3;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.contact-info strong {
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .story-grid-asymmetric,
    .insight-container,
    .testimonial-wrapper,
    .footer-content {
        flex-direction: column;
    }

    .insight-image-left {
        width: 100%;
        margin-left: 0;
    }

    .services-grid-irregular .service-card {
        width: calc(50% - 1rem);
        margin-top: 0;
    }

    .form-container-asymmetric {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .services-grid-irregular .service-card {
        width: 100%;
    }

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