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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --accent-color: #3498db;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px 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;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.logo:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-text-narrow {
    text-align: left;
    margin-bottom: 40px;
}

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

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

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

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
}

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

.narrow-text h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.narrow-text h3 {
    font-size: 24px;
    margin: 35px 0 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.narrow-text ul {
    margin: 20px 0 30px 30px;
    line-height: 1.9;
}

.narrow-text li {
    margin-bottom: 12px;
    font-size: 18px;
}

.image-inline {
    margin: 40px 0;
}

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

.inline-cta-soft {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.inline-cta-soft p {
    font-size: 20px;
    margin: 0;
}

.link-cta {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    margin-bottom: 15px;
}

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

.cta-block-center {
    text-align: center;
    margin: 70px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    color: white;
}

.cta-block-center h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: white;
}

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

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    border: 2px solid white;
    transition: all 0.3s ease;
    margin-left: 15px;
}

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

.services-reveal {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, rgba(231, 76, 60, 0.02), var(--bg-white));
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

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

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 25px 0;
}

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

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    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 textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-cta-content span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-content {
    margin-top: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

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

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

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

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

.thanks-message {
    margin: 40px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guarantee-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    text-align: center;
}

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

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}

.footer-col p {
    line-height: 1.7;
    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);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    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.7);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

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

    .narrow-text h3 {
        font-size: 20px;
    }

    .narrow-text p,
    .narrow-text li {
        font-size: 16px;
    }

    .cta-block-center {
        padding: 30px 20px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

    .service-card {
        padding: 30px 20px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

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