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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
}

.top-nav {
    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 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a4d2e;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-full {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #1a4d2e;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.visual-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.image-text-overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-text-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    bottom: 10%;
    left: 8%;
    background: rgba(255, 255, 255, 0.92);
    padding: 2.5rem 3rem;
    max-width: 480px;
}

.overlay-text h2 {
    font-size: 2.8rem;
    color: #1a4d2e;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.overlay-text p {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
}

.insight-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.insight-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h3 {
    font-size: 2.2rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

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

.trust-builder {
    padding: 6rem 2rem;
    background: #f9f7f4;
}

.centered-content {
    max-width: 1300px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 3rem;
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.process-flow {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.process-card {
    flex: 1;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8e5e0;
}

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

.process-card h4 {
    font-size: 1.5rem;
    color: #1a4d2e;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 500;
}

.process-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding: 0 1.5rem 2rem 1.5rem;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: #1a4d2e;
}

.testimonial-inline blockquote {
    border: none;
}

.testimonial-inline p {
    font-size: 1.6rem;
    line-height: 1.9;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    color: #c8d6cf;
    font-style: normal;
}

.services-reveal {
    padding: 7rem 2rem;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 3.2rem;
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #f0ede8;
    height: 420px;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
}

.service-details h3 {
    font-size: 2rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2.2rem;
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #1a4d2e;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
}

.select-service:hover {
    background: #0f3a1f;
}

.cta-section {
    padding: 7rem 2rem;
    background: #f9f7f4;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.8rem;
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.order-form {
    background: #ffffff;
    padding: 3rem;
}

.form-field {
    margin-bottom: 2rem;
}

.form-field label {
    display: block;
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a4d2e;
}

.form-field input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background: #1a4d2e;
    color: #ffffff;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.submit-btn:hover {
    background: #0f3a1f;
}

.final-statement {
    padding: 5rem 2rem;
    background: #fafaf8;
}

.closing-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #4a4a4a;
    text-align: center;
    font-style: italic;
}

.site-footer {
    background: #1a1a1a;
    color: #c8c8c8;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    padding: 1.5rem 2rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: background 0.3s ease;
}

.cookie-btn.accept {
    background: #1a4d2e;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #0f3a1f;
}

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

.cookie-btn.reject:hover {
    background: #444;
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

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

    .process-flow {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .ad-notice {
        margin-left: 0;
    }

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

    .overlay-text {
        left: 5%;
        right: 5%;
        padding: 1.5rem;
    }

    .overlay-text h2 {
        font-size: 2rem;
    }
}