* {
    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: #2d2d2d;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-floating {
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    text-shadow: none;
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #d4c5b9;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    padding: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    max-width: 700px;
}

.story-flow {
    padding: 100px 40px;
    background-color: #fff;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 50px;
}

.story-lead {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d2d2d;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-image-inline {
    margin: 60px 0;
    background-color: #e8e0d8;
}

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

.insight-reveal {
    padding: 100px 40px;
    background-color: #f5f1ed;
}

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

.insight-left {
    flex: 1;
}

.insight-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d2d2d;
}

.insight-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.insight-right {
    flex: 1;
    background-color: #d8cfc4;
}

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

.trust-layer {
    padding: 100px 40px;
    background-color: #fff;
}

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

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d2d2d;
}

.testimonials-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9f7f5;
    border-left: 4px solid #4a7c59;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.benefits-visual {
    padding: 100px 40px;
    background-color: #fafafa;
}

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    overflow: hidden;
}

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

.benefit-item h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2d2d2d;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding: 0 24px 24px;
}

.services-reveal {
    padding: 100px 40px;
    background-color: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2d2d2d;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    padding: 0 24px;
    margin-bottom: 20px;
}

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

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

.order-form-section {
    padding: 100px 40px;
    background-color: #f5f1ed;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.form-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 16px;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.footer {
    background-color: #2d2d2d;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-header {
    padding: 120px 40px 60px;
    background: linear-gradient(135deg, #4a7c59 0%, #3d6a4a 100%);
    color: #fff;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 40px;
    background-color: #fff;
}

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

.content-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2d2d2d;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #333;
}

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

.content-wrapper ul {
    margin: 20px 0 20px 30px;
}

.content-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9f7f5;
    border-left: 4px solid #4a7c59;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.contact-info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 40px;
    background-color: #fff;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #fff;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

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

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #4a7c59;
    margin: 30px 0;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background-color: #4a7c59;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #3d6a4a;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .insight-container {
        flex-direction: column;
    }

    .testimonials-inline {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

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