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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #5a9c69;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.editorial-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-block {
    margin-bottom: 2rem;
}

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

.lead-text {
    font-size: 1.3rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.hero-image-wrapper {
    width: 100%;
    margin: 2rem 0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.content-block {
    margin: 4rem 0;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    line-height: 0.9;
    float: left;
    margin: 0.1rem 0.2rem 0 0;
    color: #4a7c59;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.inline-cta-block {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: #f5f5f5;
    border-left: 4px solid #4a7c59;
}

.cta-editorial {
    text-align: center;
}

.cta-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #5a9c69;
    transform: translateY(-2px);
}

.story-section {
    margin: 6rem 0;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.story-content p {
    margin-bottom: 1.8rem;
}

.story-image {
    margin: 3rem 0;
    width: 100%;
}

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

.insight-block {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: #2c2c2c;
    color: #fff;
}

.insight-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.insight-block p {
    margin-bottom: 1.5rem;
}

.services-editorial {
    margin: 6rem 0;
}

.service-item {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

.service-text p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #4a7c59;
    font-weight: 600;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.trust-block {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.trust-block h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 3px solid #4a7c59;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    background: #fff;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.approach-section {
    margin: 6rem 0;
}

.form-section {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.form-container-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-intro {
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.editorial-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5a9c69;
    transform: translateY(-2px);
}

.closing-section {
    margin: 6rem 0 4rem 0;
    text-align: center;
}

.closing-section p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-text-link {
    color: #4a7c59;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #5a9c69;
}

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #5a9c69;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.thanks-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.thanks-highlight {
    background: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #4a7c59;
}

@media (min-width: 768px) {
    .service-item {
        flex-direction: row;
        align-items: center;
    }

    .service-item.reverse {
        flex-direction: row-reverse;
    }

    .service-text,
    .service-visual {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

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