:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #e53e3e;
    --bg-light-blue: #eff6ff;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --bg-white: #ffffff;
    --bg-gray: #f7fafc;
    --star-color: #f59e0b;
    --success-green: #38a169;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.blog { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-left { flex: 1; min-width: 0; }

.content-right {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

/* Header / Title */
.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.author-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.author-stars { color: var(--star-color); font-size: 14px; }
.author-stars i { margin-right: 2px; }

.author-img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info { font-size: 13px; color: var(--text-light); }
.author-info span { margin-right: 4px; }

/* Sections */
.section { margin-bottom: 28px; }

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section p, .section > span {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
}

.section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.section a:hover { color: var(--primary-hover); }

/* Media / Video */
.media-block {
    margin: 18px 0;
    text-align: center;
}

.media-block video,
.media-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.media-caption {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
    font-style: italic;
}

/* Special offer box */
.offer-box {
    border: 2px solid var(--primary-color);
    background: var(--bg-light-blue);
    border-radius: 10px;
    padding: 20px 24px;
    text-align: center;
    margin: 24px 0;
}

.offer-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.offer-box .discount-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.offer-box .offer-ends {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
    margin: 28px 0;
}

.cta-wrapper .cta-above {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.cta-below {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Reviews */
.reviews-section { margin: 32px 0; }

.reviews-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.reviews-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-card {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-author img {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-name {
    font-weight: 600;
    font-size: 15px;
}

.review-stars {
    color: var(--star-color);
    font-size: 13px;
    margin-bottom: 2px;
}

.review-headline {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.review-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.review-verified {
    font-size: 12px;
    color: var(--success-green);
    font-weight: 500;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.review-image img {
    max-width: 100%;
    border-radius: 6px;
}

/* FAQ */
.faq-section { margin: 32px 0; }

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.faq-question {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-medium);
}

/* Sidebar offer */
.sidebar-offer {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.sidebar-offer .cta-btn {
    font-size: 15px;
    padding: 12px 28px;
    width: 100%;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: 40px;
    font-size: 12px;
    color: var(--text-light);
}

.footer-links { margin: 8px 0; }
.footer-links a {
    color: var(--text-light);
    text-decoration: underline;
    margin-right: 16px;
}

.footer-disclosure {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-disclosure div { margin-bottom: 8px; }

/* Policy pages */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.policy-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.policy-page h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 10px;
}

.policy-page h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 6px;
}

.policy-page p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-page a {
    color: var(--primary-color);
}

.policy-back {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.policy-back:hover { text-decoration: underline; }

.policy-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 860px) {
    .content-right { display: none; }
    .article-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .article-title { font-size: 20px; }
    .cta-btn { width: 100%; padding: 14px 20px; font-size: 16px; }
    .policy-page h1 { font-size: 22px; }
}
