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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: #2c7a3e;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2c7a3e;
}

.content-flow {
    max-width: 100%;
}

.story-hero {
    padding: 5rem 2rem 3rem;
    background: #f8f9fa;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.story-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a5568;
}

.inline-image {
    max-width: 900px;
    margin: 0 auto;
}

.inline-image img,
.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.text-section {
    padding: 4rem 2rem;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.text-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.text-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-block {
    padding: 4rem 2rem;
    background: #f0f4f8;
}

.insight-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
}

.cta-link:hover {
    background: #245e31;
}

.services-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid #2c7a3e;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c7a3e;
    margin-top: 1rem;
}

.story-testimonial {
    padding: 4rem 2rem;
    background: #2c7a3e;
    color: #ffffff;
}

.story-testimonial blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
}

.story-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

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

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

.story-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

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

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

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

.btn-primary {
    background: #2c7a3e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-primary:hover {
    background: #245e31;
}

.final-cta {
    margin: 3rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.25rem;
}

.cta-button:hover {
    background: #245e31;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c7a3e;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
    color: #ffffff;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #2c7a3e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 1000;
}

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

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

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

.services-page-grid {
    max-width: 1100px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
}

.services-page-hero {
    background: #2c7a3e;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c7a3e;
}

.about-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-page {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c7a3e;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.thanks-cta {
    margin-top: 2rem;
}

.thanks-cta a {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .story-hero h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
