* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.nav-links a {
    font-weight: 500;
    color: #34495e;
}

.hero-visual {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    background-color: #2d5016;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d5016;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.problem-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
}

.insight-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: #ffffff;
}

.insight-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.insight-box h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.insight-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-visual {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.benefits-visual h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2d5016;
}

.benefit-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin: 1.5rem;
    color: #2d5016;
}

.benefit-card p {
    margin: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.trust-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.trust-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-align: center;
}

blockquote {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2d5016;
    font-style: italic;
}

blockquote p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-selection {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-intro p {
    font-size: 1.2rem;
    color: #555;
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-item h4 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-item p {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #2d5016;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.select-service:hover {
    background: #4a7c29;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.selected-service-display,
.selected-price-display {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background: #2d5016;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

.submit-btn:hover {
    background: #4a7c29;
}

.final-cta {
    padding: 5rem 2rem;
    background: #2d5016;
    color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
}

.footer {
    background: #1a2f0e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 47, 14, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.cookie-btn.accept:hover {
    background: #4a7c29;
}

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

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

.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.philosophy p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.values {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 300px;
    text-align: center;
}

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

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.team {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.team p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.services-intro {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.services-intro p {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
}

.services-detailed {
    padding: 2rem 2rem 6rem;
    background: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background: #2d5016;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background: #4a7c29;
    opacity: 1;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    text-align: center;
}

.cta-section .cta-box h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section .cta-box p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: auto;
}

.map-note {
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
    background: #f8f9fa;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.thanks-page {
    padding: 8rem 2rem 6rem;
    background: #f8f9fa;
    min-height: 70vh;
    margin-top: 80px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.order-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.order-details p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.next-steps {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

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

.legal-page {
    padding: 4rem 2rem 6rem;
    background: #ffffff;
    margin-top: 80px;
}

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

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

.last-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.legal-container a {
    color: #2d5016;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: #555;
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-subtext {
        font-size: 1.2rem;
    }

    .split-layout,
    .about-container,
    .contact-container,
    .service-detail {
        flex-direction: column;
    }

    .benefit-cards {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}