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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #2ecc71;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #e1e4e8;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.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(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #27ae60;
}

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

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

.cookie-link {
    color: #3498db;
    text-decoration: underline;
    font-size: 14px;
}

.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    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-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-content {
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.hero-image,
.content-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-section,
.insight-block,
.problem-section,
.services-preview,
.trust-section,
.why-us-section,
.form-section,
.urgency-section {
    margin: 60px 0;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.drop-cap::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.9;
    margin: 0.05em 0.1em 0 0;
    font-weight: 700;
    color: var(--primary-color);
}

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

.content-narrow h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-narrow h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-gray);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-text {
    font-size: 20px;
    color: var(--text-light);
    margin-top: 10px;
}

.testimonial-inline {
    display: block;
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 35px 0;
    background: var(--bg-gray);
}

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

.service-card-editorial {
    background: white;
    border: 1px solid var(--border-color);
    padding: 35px;
    margin: 30px 0;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.service-card-editorial h3 {
    font-size: 26px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.service-card-editorial p {
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
}

.cta-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.benefit-list {
    margin: 30px 0;
}

.benefit-item {
    background: var(--bg-gray);
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item h4 {
    margin: 0 0 10px 0;
}

.benefit-item p {
    margin: 0;
}

.editorial-form {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.urgency-section {
    background: #fff3cd;
    padding: 40px;
    border-left: 5px solid #ffc107;
    margin: 60px 0;
}

.urgency-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.page-header {
    margin: 60px 0 40px;
}

.lead-text {
    font-size: 22px;
    color: var(--text-light);
    margin-top: 15px;
}

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

.contact-info-block {
    margin: 40px 0;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.note-text {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.map-section {
    margin: 60px 0;
    background: var(--bg-gray);
    padding: 40px 0;
}

.cta-section {
    text-align: center;
    margin: 80px 0;
    padding: 60px 20px;
    background: var(--bg-gray);
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 20px 10px 0;
}

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

.services-detail {
    margin: 40px 0;
}

.service-detailed {
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

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

.service-header h2 {
    margin: 0;
    flex: 1;
}

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

.service-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
}

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

.btn-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.guarantee-section {
    background: var(--bg-gray);
    padding: 40px;
    margin: 60px 0;
    border-radius: 8px;
    text-align: center;
}

.thanks-section {
    text-align: center;
    padding: 80px 20px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin: 20px 0;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin: 20px 0 40px;
}

.service-confirmation {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-weight: 600;
}

.thanks-info {
    text-align: left;
    margin: 60px 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    background: var(--bg-gray);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.step-item h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

.step-item p {
    margin: 0;
}

.thanks-cta {
    background: #e8f5e9;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.immediate-tips {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.immediate-tips li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.immediate-tips li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--success-color);
    font-weight: 700;
    font-size: 24px;
}

.thanks-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
}

.thanks-contact {
    margin-top: 40px;
    color: var(--text-light);
}

.legal-page .page-header {
    background: var(--bg-gray);
    padding: 60px 20px 40px;
    margin: 0 0 40px 0;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.legal-content {
    margin: 40px 0 80px;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content li {
    margin: 8px 0;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-gray);
    font-weight: 600;
}

.mission-section,
.approach-section,
.impact-section,
.team-section {
    margin: 60px 0;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

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

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

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

    .content-narrow h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 42px;
    }

    .service-card-editorial {
        padding: 25px;
    }

    .editorial-form {
        padding: 25px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-large {
        font-size: 28px;
    }

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

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

    .cookie-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 5px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .content-narrow h2 {
        font-size: 22px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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