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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52796f;
    --text-dark: #1b1b1b;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #40916c;
    --warning-color: #f77f00;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.btn-cookie.accept:hover {
    background-color: #2d6a4f;
}

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

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

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

.nav-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-header {
    margin-bottom: 60px;
    text-align: left;
}

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

.header-intro {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    margin-top: 20px;
}

.story-section {
    margin-bottom: 80px;
}

.inline-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
}

.story-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.story-content h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.story-content h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 30px;
    font-weight: 600;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.inline-cta {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.insight-section {
    margin: 80px 0;
    padding: 40px 0;
}

.insight-box {
    background-color: var(--background-light);
    padding: 40px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.insight-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.insight-box ul {
    margin-left: 25px;
    margin-top: 20px;
}

.insight-box ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.problem-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background-color: var(--background-white);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.section-cta {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.section-cta:hover {
    background-color: var(--secondary-color);
    color: white;
}

.services-preview {
    margin: 80px 0;
}

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

.services-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-item.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 26px;
    color: var(--text-dark);
    flex: 1;
    min-width: 200px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-item p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.testimonial-inline {
    margin: 80px 0;
    padding: 50px 40px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 17px;
    font-style: normal;
    color: var(--text-light);
}

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

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-block {
    margin: 80px 0;
    padding: 50px 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-align: center;
}

.cta-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.cta-block p {
    font-size: 19px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: rgba(255,255,255,0.95);
    color: var(--text-dark);
}

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

.btn-submit {
    background-color: var(--background-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.final-note {
    margin: 80px 0 40px;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

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

.footer-col 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 {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.services-detailed {
    margin: 60px 0;
}

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

.service-detail {
    margin-bottom: 100px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h3 {
    font-size: 32px;
    color: var(--text-dark);
    flex: 1;
}

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

.badge {
    display: inline-block;
    background-color: var(--warning-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.service-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
}

.service-detail-content {
    margin-top: 30px;
}

.service-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.detail-list {
    margin-left: 25px;
    margin-bottom: 30px;
}

.detail-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 17px;
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.featured-service {
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    background-color: rgba(26, 77, 46, 0.02);
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-page {
    margin: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form-container .contact-form {
    max-width: 100%;
}

.contact-form-container .form-group label {
    color: var(--text-dark);
}

.contact-form-container .btn-submit {
    background-color: var(--primary-color);
    color: white;
}

.contact-form-container .btn-submit:hover {
    background-color: var(--secondary-color);
}

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

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

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

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.thanks-page .article-header {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    font-weight: bold;
}

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

.thanks-info {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 50px;
    text-align: center;
}

.thanks-info p {
    font-size: 18px;
    margin: 0;
}

.next-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    display: block;
    text-align: center;
    background-color: var(--background-light);
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.signature {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

.legal-page .legal-content {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.team-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-member {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.role {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--background-white);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .cookie-buttons {
        justify-content: flex-end;
    }

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

    .contact-grid {
        flex-direction: row;
        gap: 80px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form-container {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1;
        min-width: 220px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .thanks-links {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .editorial-flow {
        padding: 80px 20px;
    }

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