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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.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-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.6;
}

.hero-image-inline {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 8px;
}

.story-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.narrow-column h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.narrow-column h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image {
    width: 100%;
    margin: 32px 0;
    border-radius: 6px;
}

.inline-cta-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.cta-box-inline {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-box-inline h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
}

.btn-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.trust-section {
    padding: 60px 20px;
    background-color: #fef9f5;
}

.testimonial-inline {
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    border-left: 4px solid #e67e22;
    padding-left: 24px;
    margin: 32px 0;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-preview {
    padding: 60px 20px;
    background-color: #ffffff;
}

.services-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 720px;
    margin: 40px auto 0;
}

.service-card-minimal {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 6px;
    border-left: 5px solid #3498db;
}

.service-card-minimal h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-card-minimal p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #2980b9;
}

.form-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.editorial-form {
    max-width: 720px;
    margin: 32px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #bdc3c7;
    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: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.final-trust {
    padding: 60px 20px;
    background-color: #fef9f5;
}

.closing-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

.page-header {
    padding: 80px 20px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.values-list {
    list-style: none;
    margin-top: 24px;
}

.values-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    color: #34495e;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.cta-section-about,
.cta-section-services,
.cta-section-contact {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.services-detail-section {
    padding: 40px 20px;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3498db;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0 24px;
}

.service-detail-card ul {
    margin: 16px 0 16px 24px;
}

.service-detail-card li {
    margin-bottom: 8px;
    color: #546e7a;
    font-size: 16px;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #546e7a;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.legal-section {
    padding: 40px 20px 60px;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-section ul {
    margin: 16px 0 16px 32px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #546e7a;
}

.cookie-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-details {
    max-width: 720px;
    margin: 40px auto;
    text-align: left;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.step-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #3498db;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #546e7a;
    margin: 0;
}

.faq-preview {
    margin-top: 32px;
}

#service-confirmation {
    background-color: #ecf0f1;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .lead-text {
        font-size: 18px;
    }

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

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

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .service-detail-card {
        padding: 24px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}