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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f4a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.3rem 0.8rem;
    background: #f3f4f6;
    border-radius: 4px;
}

.hero-fullwidth {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a5f4a;
}

.hero-fullwidth img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content-narrow {
    max-width: 680px;
    text-align: center;
    padding: 2rem;
}

.hero-content-narrow h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #f3f4f6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5f4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #145240;
    transform: translateY(-2px);
}

.intro-centered {
    padding: 8rem 2rem;
    background: #fafafa;
}

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

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
    line-height: 1.3;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.problem-amplify {
    padding: 6rem 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: #1f2937;
}

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

.split-image {
    flex: 1;
    background-color: #e5e7eb;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.insight-block {
    padding: 7rem 2rem;
    background: #f0fdf4;
}

.insight-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1a5f4a;
}

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

.wide-container {
    max-width: 1300px;
    margin: 0 auto;
}

.wide-container h3 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.story-card:nth-child(even) {
    flex-direction: row-reverse;
}

.story-card img {
    width: 45%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.story-text {
    flex: 1;
    padding: 1rem 0;
}

.story-text h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.story-text p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.trust-building {
    padding: 6rem 2rem;
    background: #fafafa;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f4a;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonial-block {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #1a5f4a;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

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

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-item h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-item p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f4a;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #1a5f4a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #145240;
    transform: translateY(-1px);
}

.select-service.selected {
    background: #059669;
}

.final-cta {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

.final-cta h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.final-cta p {
    font-size: 1.15rem;
    color: #4b5563;
}

.form-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f4a;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #1a5f4a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: justify;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.cookie-link {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: underline;
}

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

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

.thanks-box h1 {
    font-size: 2.5rem;
    color: #1a5f4a;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    display: inline-block;
    background: #f0fdf4;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #1a5f4a;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #1a5f4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-home:hover {
    background: #145240;
}

.page-header {
    background: #1a5f4a;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4b5563;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    margin-bottom: 0.7rem;
    color: #4b5563;
    line-height: 1.7;
}

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

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-email {
    color: #1a5f4a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 2.3rem;
    }

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

    .split-layout {
        flex-direction: column;
    }

    .story-card {
        flex-direction: column !important;
    }

    .story-card img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
}
