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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    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: white;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.editorial-main {
    max-width: 100%;
    margin: 0 auto;
}

.story-flow {
    width: 100%;
}

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

.centered {
    text-align: center;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

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

.hero-image-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-block {
    padding: 60px 0;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.content-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 32px;
    line-height: 1.3;
    font-weight: 700;
}

.content-block h4 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.styled-list {
    margin: 24px 0;
    padding-left: 24px;
}

.styled-list li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

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

.image-text-block {
    padding: 60px 0;
    background: var(--bg-light);
}

.image-text-block img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.highlight-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.highlight-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.large-text {
    font-size: 22px;
    line-height: 1.7;
}

.benefits-reveal {
    padding: 60px 0;
}

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

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

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 18px;
    color: var(--text-light);
}

.trust-block {
    padding: 60px 0;
    background: var(--bg-light);
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
    font-style: italic;
    margin: 40px 0;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.service-inline {
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-inline h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-inline p {
    font-size: 17px;
    margin-bottom: 12px;
}

.price-inline {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.cta-inline:hover {
    background: #d97419;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-section-center {
    text-align: center;
    margin: 40px 0;
}

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

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 95, 125, 0.3);
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px 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(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

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

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

.btn-submit:hover {
    background: #d97419;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}

.final-trust {
    padding: 60px 0;
}

.closing-statement {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.feature-item {
    margin-bottom: 40px;
}

.services-list {
    padding: 60px 0;
}

.service-card {
    margin-bottom: 48px;
    padding: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.service-card.featured-service {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 0;
    color: var(--text-dark);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-description ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-description li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.service-duration,
.service-note,
.service-highlight {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 15px;
}

.service-highlight {
    background: #fff9f5;
    border-left: 3px solid var(--accent-color);
    font-weight: 600;
}

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

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

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 125, 0.3);
}

.btn-featured:hover {
    background: #d97419;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-item p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

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

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

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

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

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-details {
    margin: 40px 0;
}

.selected-service {
    font-size: 19px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 4px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 24px;
}

.steps-list li {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-content {
    background: var(--bg-white);
}

.legal-content .page-header {
    background: var(--bg-light);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

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

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

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

    .content-block h3 {
        font-size: 24px;
    }

    .content-block p,
    .styled-list li {
        font-size: 17px;
    }

    .service-card {
        padding: 24px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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