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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2c7a4f;
    --accent-color: #ff6b35;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --text-muted: #767676;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    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: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: #ff5722;
}

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

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

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-header {
    margin-bottom: 48px;
}

.header-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.article-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta span {
    display: inline-block;
}

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

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    margin: 60px 0;
}

.article-content p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.8;
}

.dropcap::first-letter {
    float: left;
    font-size: 72px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 60px 0 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 48px 0 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.article-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin: 32px 0 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.inline-cta {
    background: var(--bg-light);
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.inline-cta p {
    margin-bottom: 16px;
    font-size: 18px;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-link:hover {
    transform: translateX(4px);
}

.article-quote {
    margin: 48px 0;
    padding: 32px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.article-quote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    opacity: 0.9;
}

.article-image-inline {
    margin: 48px 0;
}

.article-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-image-inline figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.highlight-box {
    background: var(--bg-light);
    padding: 36px;
    margin: 40px 0;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    margin: 48px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3,
.cta-box h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
}

.cta-box.highlighted {
    background: var(--accent-color);
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary.large {
    padding: 18px 48px;
    font-size: 19px;
}

.cta-box.highlighted .btn-primary {
    background: var(--text-dark);
    color: white;
}

.testimonial {
    background: var(--bg-light);
    padding: 28px 32px;
    margin: 32px 0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    font-style: italic;
    font-size: 17px;
}

.testimonial cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.services-reveal {
    margin: 80px 0;
    padding: 60px 0;
    background: var(--bg-light);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.services-reveal h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.services-reveal > p {
    text-align: center;
    font-size: 19px;
    margin-bottom: 48px;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    margin: 28px 0 24px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-card.featured .btn-select {
    background: var(--accent-color);
}

.service-card.featured .btn-select:hover {
    background: #ff5722;
}

.form-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin: 32px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-card cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.urgency-section {
    margin: 80px 0;
}

.cta-box.final {
    margin-top: 40px;
}

.faq {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.final-note {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

.final-note p {
    margin-bottom: 16px;
    font-size: 19px;
}

.final-note p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 30px;
}

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-lead {
        font-size: 19px;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .article-content h3 {
        font-size: 22px;
    }

    .article-content p {
        font-size: 17px;
    }

    .article-quote {
        padding: 24px 28px;
        font-size: 18px;
    }

    .inline-cta,
    .highlight-box {
        padding: 24px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .service-card {
        padding: 28px;
    }

    .form-section {
        padding: 40px 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .editorial-container {
        padding: 40px 16px 60px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-lead {
        font-size: 17px;
    }

    .services-reveal {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
}
