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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 3px solid #3498db;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.ad-label {
    background-color: #ffeaa7;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #2d3436;
}

.hero-editorial {
    padding: 60px 0 40px;
    background-color: #fff;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.lead-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #e8f4f8;
}

.intro-section,
.problem-section,
.services-preview,
.trust-section,
.disclaimer-section,
.form-section {
    padding: 50px 0;
}

.intro-section {
    background-color: #ecf0f1;
}

.problem-section {
    background-color: #fff;
}

.services-preview {
    background-color: #f8f9fa;
}

.trust-section {
    background-color: #fff;
}

.disclaimer-section {
    background-color: #fef5e7;
    padding: 30px 0;
}

.form-section {
    background-color: #e8f8f5;
}

h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #34495e;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
}

.section-image,
.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    object-fit: cover;
    background-color: #e8f4f8;
}

.service-inline {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

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

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

.btn-service {
    background-color: #3498db;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-form {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: white;
    padding: 14px 40px;
    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);
}

blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

blockquote p {
    margin-bottom: 10px;
    font-size: 18px;
}

blockquote footer {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 15px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #f39c12;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

    h2 {
        font-size: 26px;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}