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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

/* CSS Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 50%, #1e8449 100%);
    color: white;
    padding: 70px 0;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.4);
    position: relative;
    overflow: hidden;
}

.rnpc-logo-verdict {
    float: left;
    margin: 0 25px 15px 0;
}

.rnpc-logo-verdict img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
}

.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;
    transition: box-shadow 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.author-image img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #219a52;
    box-shadow: 0 8px 20px rgba(33, 154, 82, 0.4);
}

.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, #27ae60 0%, #219a52 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.author-credentials span:hover {
    transform: scale(1.1);
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    text-align: center;
    color: #219a52;
    font-weight: 700;
}

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;
}

.verdict-card::after {
    content: "";
    display: table;
    clear: both;
}

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

.verdict-card {
    background: linear-gradient(135deg, #eafaf1 0%, #d5f5e3 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 3px solid #219a52;
    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.half-filled {
    color: #f39c12;
    position: relative;
}

.star.half-filled::before {
    content: '★';
    position: absolute;
    width: 50%;
    overflow: hidden;
    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: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #219a52;
}

.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;
}

.alternative-image {
    text-align: center;
    margin: 30px 0;
}

.alternative-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.review-card.neutral {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, #fff 0%, #eafaf1 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: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    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, #27ae60 0%, #219a52 100%);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    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: 5px;
    background: linear-gradient(135deg, #27ae60 0%, #219a52 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, #f093fb 0%, #f5576c 100%);
}

.timeline-marker.month1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.timeline-marker.month2 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.timeline-marker.month3 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 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;
    transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.timeline-item:nth-child(even) .timeline-content {
    border-right: 4px solid #219a52;
    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, #4ecdc4 0%, #44a08d 100%);
    color: white;
}

.timeline-cta {
    text-align: center;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    border-radius: 20px;
    color: white;
}

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

.cta-button.timeline-btn {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
    font-size: 1.15rem;
    padding: 18px 40px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin: 60px 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;
}

/* Personal Message */
.personal-message {
    margin: 50px 0;
}

.message-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e74c3c;
}

.message-card h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.message-card p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.message-card .signature {
    text-align: right;
    font-style: italic;
    color: #555;
    margin-top: 30px;
    margin-bottom: 0;
}

.message-card .signature strong {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    padding: 35px 0;
    text-align: center;
    border-top: 4px solid #219a52;
}

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

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

.footer-cta a:hover {
    color: #219a52;
    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%;
    }
}
