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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: #2e7d32;
    color: #fff;
}

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

.btn-cookie.reject {
    background: #f5f5f5;
    color: #333;
}

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

.main-nav {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.editorial-main {
    background: #fff;
}

.editorial-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-hero {
    margin-bottom: 60px;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead {
    font-size: 22px;
    color: #666;
    font-style: italic;
}

.narrow-text {
    max-width: 100%;
}

.opening-para {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.narrow-text p {
    margin-bottom: 22px;
    font-size: 18px;
}

.narrow-text h2 {
    font-size: 36px;
    margin: 50px 0 25px 0;
    font-weight: 400;
    color: #1a1a1a;
}

.story-intro {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.inline-cta-section {
    margin: 60px 0;
}

.cta-card-inline {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    border-left: 4px solid #2e7d32;
}

.cta-card-inline h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}

.cta-card-inline p {
    margin-bottom: 20px;
    color: #666;
}

.btn-primary-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-primary-inline:hover {
    background: #1b5e20;
}

.story-section {
    margin: 60px 0;
}

.story-image {
    margin: 40px 0;
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card-editorial {
    background: #f9f9f9;
    padding: 30px;
    border-left: 3px solid #2e7d32;
}

.service-card-editorial h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-card-editorial p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.price-tag {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 6px 16px;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
}

.service-link {
    display: inline-block;
    color: #2e7d32;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
}

.service-link:hover {
    text-decoration: underline;
}

.trust-section {
    margin: 60px 0;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.trust-item {
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #1a1a1a;
}

.trust-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.trust-item p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.testimonial-inline {
    margin: 60px 0;
}

.client-quote {
    font-size: 20px;
    line-height: 1.7;
    padding: 40px;
    background: #f0f7f1;
    border-left: 4px solid #2e7d32;
    font-style: italic;
    color: #333;
}

.client-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.cta-section-prominent {
    margin: 70px 0;
}

.cta-box-large {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.cta-box-large h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-box-large p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.btn-large-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-large-cta:hover {
    background: #1b5e20;
}

.form-section {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
}

.contact-form-editorial {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    padding: 14px 40px;
    background: #2e7d32;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background: #1b5e20;
}

.final-section {
    margin: 60px 0 0 0;
    padding-top: 50px;
    border-top: 1px solid #e5e5e5;
}

.closing-para {
    font-size: 18px;
    margin-bottom: 22px;
}

.text-link-cta {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.text-link-cta:hover {
    text-decoration: underline;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 30px 30px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

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

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.about-page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-page-content h2 {
    font-size: 32px;
    margin: 50px 0 25px 0;
    font-weight: 400;
}

.about-page-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.about-image {
    margin: 40px 0;
    width: 100%;
}

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

.services-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.services-page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.services-page-content .intro-text {
    font-size: 20px;
    margin-bottom: 50px;
    color: #666;
}

.service-detail {
    margin-bottom: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #2e7d32;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-detail p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail .price-display {
    font-size: 22px;
    color: #2e7d32;
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.contact-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info-block {
    background: #f9f9f9;
    padding: 40px;
    margin: 30px 0;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.policy-page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.policy-page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    font-weight: 400;
}

.policy-page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.policy-page-content ul {
    margin: 20px 0 20px 40px;
}

.policy-page-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-page-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2e7d32;
}

.thanks-page-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-page-content .btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.thanks-page-content .btn-back-home:hover {
    background: #1b5e20;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .lead {
        font-size: 18px;
    }

    .opening-para {
        font-size: 18px;
    }

    .narrow-text p {
        font-size: 16px;
    }

    .narrow-text h2 {
        font-size: 28px;
    }

    .cta-card-inline {
        padding: 30px 20px;
    }

    .cta-box-large {
        padding: 40px 20px;
    }

    .cta-box-large h2 {
        font-size: 28px;
    }

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

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