:root {
    --primary-color: #2c3e50;
    --accent-color: #c0392b;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: var(--shadow);
    position: relative;
}

.editorial-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.editorial-content {
    padding-left: 30px;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.article-intro {
    margin-bottom: 30px;
}

.article-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-section {
    margin-bottom: 40px;
}

.article-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
}

.article-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-section strong {
    color: var(--accent-color);
    font-weight: 700;
}

.article-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-section li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.article-image img:hover {
    transform: scale(1.02);
}

.article-image figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.testimonial {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-block {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-block p {
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.cta-button i {
    margin-right: 10px;
}

.feature-list {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviews-section {
    margin: 50px 0;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.review-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.spec-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.spec-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item p {
    margin: 0;
    font-size: 1.05rem;
}

.final-cta {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.final-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.faq-section {
    margin: 50px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item h3 {
    background: var(--light-gray);
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #e9ecef;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.legal-info {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-info h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-info p {
    margin-bottom: 5px;
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 20px 15px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .editorial-content {
        padding-left: 20px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-block {
        padding: 25px 20px;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .editorial-content {
        padding-left: 15px;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .article-section h2 {
        font-size: 1.3rem;
    }
    
    .article-intro p,
    .article-section p {
        font-size: 1rem;
    }
    
    .cta-block h3 {
        font-size: 1.3rem;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
    }
}
