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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e44ad 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Author Section */
.author-section {
    margin-bottom: 50px;
}

.author-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.author-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.5rem;
}

.author-info p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.author-credentials span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

/* Review Cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Summary Section */
.summary-section {
    margin-top: 50px;
    margin-bottom: 40px;
}

.verdict-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #667eea;
    text-align: center;
}

.verdict-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.verdict-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.rating-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 1.5rem;
}

.star.filled {
    color: #f39c12;
}

.star.empty {
    color: #ddd;
}

.rating-text {
    font-weight: 600;
    color: #e74c3c;
    font-size: 1.1rem;
}

.verdict-conclusion {
    color: #2c3e50;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    border-top: 2px solid #e9ecef;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

/* Transition Section */
.transition-section {
    margin: 40px 0;
}

.transition-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #6c757d;
}

.transition-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.transition-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-card.negative {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #fdf2f2 100%);
}

.review-card.positive {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.review-card.neutral {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, #fff 0%, #fefbf3 100%);
}

.review-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
}

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

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #2c3e50;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Alternative Section */
.alternative-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
}

/* Timeline Section */
.timeline-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 50px 0;
}

.timeline-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.timeline-marker.week1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.timeline-marker.month1 {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.timeline-marker.month2 {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
}

.timeline-marker.month3 {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    border-left-color: #667eea;
    margin-left: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    border-right: 4px solid #667eea;
    border-left: none;
    margin-right: 20px;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.result-badge.positive {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
    color: white;
}

.timeline-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.timeline-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-button.timeline-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 50px 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

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

.guarantee {
    margin-top: 20px !important;
    font-style: italic;
    opacity: 0.8 !important;
}

/* Testimonial */
.testimonial {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #ddd;
    position: absolute;
    left: -20px;
    top: -10px;
}

cite {
    font-weight: 600;
    color: #667eea;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-cta {
    margin-top: 15px;
}

.footer-cta a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.footer-cta a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-banner {
        padding: 30px 20px;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .author-image img {
        width: 100px;
        height: 100px;
    }
    
    .author-info h2 {
        text-align: center;
    }
    
    .author-credentials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}
