/* Reset and Base Styles */
* {
    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-color: #ffffff;
    font-size: 17px;
}

a {
    color: #2d7a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f5437;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef2;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b3c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #455a73;
}

.ad-notice {
    font-size: 13px;
    color: #7a8b9e;
    padding: 6px 14px;
    background-color: #f4f7fa;
    border-radius: 4px;
    border: 1px solid #dde4eb;
}

/* Hero Section */
.hero-full {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a2b3c;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 54, 0.75), rgba(26, 43, 60, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 820px;
    text-align: center;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #e8f2ef;
}

/* Content Containers */
.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wide {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.story-intro,
.problem-amplify,
.trust-layer,
.final-note,
.references,
.care-info,
.order-cta,
.collection-intro,
.about-story,
.what-next,
.cta-about,
.next-steps,
.while-waiting,
.contact-reminder,
.location-note,
.company-data {
    background-color: #ffffff;
}

.insight-block,
.collection-preview,
.cta-section {
    background-color: #f8fafb;
}

.solution-reveal,
.process-visual,
.team-approach {
    background-color: #ffffff;
}

/* Typography */
h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a2b3c;
    letter-spacing: -0.8px;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #243647;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 14px;
    color: #2c3e50;
}

p {
    margin-bottom: 20px;
    color: #455a73;
}

/* Story Sections */
.story-intro p,
.problem-amplify p {
    font-size: 19px;
    line-height: 1.8;
}

/* Insight Block */
.insight-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-visual {
    flex: 1;
    background-color: #e8f2ef;
}

.insight-visual img {
    width: 100%;
    border-radius: 4px;
}

.note-text {
    font-style: italic;
    color: #5a6c7d;
    margin-top: 20px;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: #455a73;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
    font-size: 20px;
}

/* Split Layout */
.split-layout,
.split-reverse {
    display: flex;
    gap: 72px;
    align-items: center;
}

.split-visual,
.split-content {
    flex: 1;
}

.split-visual img {
    border-radius: 4px;
    background-color: #e8f2ef;
}

/* Testimonials */
.testimonial-card {
    background-color: #f8fafb;
    padding: 32px;
    border-left: 4px solid #2d7a4f;
    margin-bottom: 24px;
    border-radius: 2px;
}

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

.testimonial-author {
    font-size: 15px;
    color: #7a8b9e;
    font-weight: 500;
}

/* Product Grid */
.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    color: #5a6c7d;
    font-size: 18px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 48px;
}

.product-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8f2ef;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card h4 {
    padding: 20px 20px 8px;
    margin-bottom: 8px;
}

.product-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.price {
    padding: 0 20px 16px;
    font-size: 22px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 0;
}

.select-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px 24px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-btn:hover {
    background-color: #1f5437;
    transform: translateY(-2px);
}

.select-btn:active {
    transform: translateY(0);
}

/* Form Section */
.main-form {
    max-width: 540px;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1dce5;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #2d7a4f;
}

.selection-display {
    padding: 18px;
    background-color: #e8f2ef;
    border-left: 4px solid #2d7a4f;
    margin-bottom: 24px;
    border-radius: 2px;
    font-weight: 600;
    color: #1f5437;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.submit-btn:active {
    transform: translateY(0);
}

/* Disclaimer and References */
.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7a8b9e;
    padding: 24px;
    background-color: #f4f7fa;
    border: 1px solid #dde4eb;
    border-radius: 3px;
}

.reference-list {
    list-style: none;
    counter-reset: reference-counter;
}

.reference-list li {
    counter-increment: reference-counter;
    margin-bottom: 12px;
    padding-left: 36px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.reference-list li::before {
    content: "[" counter(reference-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2d7a4f;
}

/* Footer */
.main-footer {
    background-color: #1a2b3c;
    color: #cbd5e0;
    padding: 56px 0 28px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section ul li a {
    color: #a0aec0;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #2d3e52;
    text-align: center;
}

.footer-bottom p {
    color: #8896a8;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2b3c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1f5437;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #4a5d75;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #3a4d63;
    transform: translateY(-2px);
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, #2d7a4f, #1a5036);
    padding: 80px 24px;
    text-align: center;
}

.hero-content-center {
    max-width: 720px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-content-center p {
    font-size: 20px;
    color: #e8f2ef;
    margin-bottom: 0;
}

/* Image-Text Splits */
.image-text-split,
.split-reverse {
    display: flex;
    gap: 64px;
    align-items: center;
}

.image-side,
.text-side,
.image-content-right,
.text-content-left {
    flex: 1;
}

.image-side img,
.image-content-right img {
    border-radius: 4px;
    background-color: #e8f2ef;
}

/* Value Blocks */
.value-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8eef2;
}

.value-block:last-child {
    border-bottom: none;
}

.value-block h4 {
    color: #1a2b3c;
    margin-bottom: 12px;
}

.value-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #1f5437;
    transform: translateY(-2px);
}

/* Product Detail Cards (Services Page) */
.products-detailed {
    padding: 60px 0;
}

.product-detail-card {
    display: flex;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid #e8eef2;
}

.product-detail-card:last-child {
    border-bottom: none;
}

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

.product-detail-image,
.product-detail-info {
    flex: 1;
}

.product-detail-image {
    background-color: #e8f2ef;
    border-radius: 4px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    border-radius: 4px;
}

.product-tagline {
    font-size: 17px;
    color: #2d7a4f;
    font-weight: 600;
    margin-bottom: 16px;
}

.spec-list {
    list-style: none;
    margin: 24px 0;
}

.spec-list li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-size: 24px;
    line-height: 1;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a4f;
    margin: 24px 0 20px;
}

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 72px;
}

.contact-info-block,
.contact-text-block {
    flex: 1;
}

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

.contact-item h4 {
    margin-bottom: 10px;
    color: #1a2b3c;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 8px;
}

.note-small {
    font-size: 14px;
    color: #7a8b9e;
    font-style: italic;
}

.faq-mini {
    list-style: none;
    margin: 20px 0;
}

.faq-mini li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
}

.faq-mini li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #e8f2ef, #f8fafb);
    padding: 100px 24px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border: 2px solid #2d7a4f;
    margin-top: 28px;
}

.service-confirmation p {
    margin: 0;
    color: #1f5437;
    font-weight: 600;
    font-size: 17px;
}

.step-block {
    margin-bottom: 32px;
}

.step-block h4 {
    color: #2d7a4f;
    margin-bottom: 10px;
}

.action-links {
    display: flex;
    gap: 28px;
    margin-top: 36px;
}

.action-card {
    flex: 1;
    padding: 28px;
    background-color: #f8fafb;
    border: 1px solid #e8eef2;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.action-card:hover {
    border-color: #2d7a4f;
    box-shadow: 0 4px 16px rgba(45, 122, 79, 0.1);
    transform: translateY(-4px);
}

.action-card h4 {
    color: #1a2b3c;
    margin-bottom: 10px;
}

.action-card p {
    color: #5a6c7d;
    margin: 0;
    font-size: 15px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 12px;
}

.update-date {
    font-size: 15px;
    color: #7a8b9e;
    margin-bottom: 40px;
}

.legal-page h2 {
    margin-top: 48px;
    font-size: 28px;
}

.legal-page h3 {
    margin-top: 32px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
}

.legal-page li {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cookie-table {
    background-color: #f8fafb;
    padding: 24px;
    border-radius: 4px;
    margin: 24px 0;
}

.cookie-table h4 {
    margin-bottom: 16px;
}

.cookie-table ul {
    margin: 0;
    list-style: none;
}

.cookie-table li {
    margin-bottom: 10px;
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .nav-links {
        gap: 20px;
    }

    .insight-grid,
    .split-layout,
    .split-reverse,
    .image-text-split,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .product-detail-card,
    .product-detail-card.reverse {
        flex-direction: column;
    }

    .product-grid {
        gap: 24px;
    }

    .product-card {
        flex: 1 1 calc(50% - 12px);
    }

    .footer-container {
        flex-direction: column;
        gap: 36px;
    }

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

    .action-links {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 14px;
    }

    .ad-notice {
        font-size: 11px;
        padding: 4px 10px;
    }

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

    .main-form {
        padding: 28px 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero-full {
        height: 70vh;
        min-height: 500px;
    }
}