:root {
    --primary-color: #d32f2f;
    /* Red for alert and urgency */
    --secondary-color: #1976d2;
    /* Trustful blue */
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-bg: #fffde7;
    --warning-border: #ffd600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color);
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Layout */
.article-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.main-content {
    flex: 1;
    min-width: 60%;
}

.sidebar {
    width: 300px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }

    nav {
        display: none;
    }
}

/* Typography & Content */
.breadcrumbs {
    font-size: 13px;
    color: #777;
    margin-bottom: १५px;
}

.headline {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
    font-weight: 900;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.date-published {
    font-size: 13px;
    color: #777;
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

.content-body h2 {
    font-size: 26px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 5px;
}

.content-body p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Alerts and CTAs */
.alert-box {
    background-color: var(--warning-bg);
    border-left: 5px solid var(--warning-border);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.alert-box h3 {
    color: #d32f2f;
    margin-bottom: 10px;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--success-color);
    color: white;
    padding: 18px 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    border-radius: 8px;
    margin: 20px 0;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cta-button:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

.cta-button.large {
    font-size: 22px;
    padding: 22px 20px;
}

.cta-button.small {
    font-size: 16px;
    padding: 12px;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Lists */
.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 10px;
    background: var(--light-bg);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Testimonials */
.testimonials {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.testimonial {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.stars {
    color: #ffa000;
}

/* Conclusion Box */
.conclusion-box {
    border: 2px dashed var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background: #f0f8ff;
    margin-top: 40px;
}

.urgency {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.secure-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Sidebar Widget */
.widget {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sticky {
    position: sticky;
    top: 90px;
}

.widget h3 {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.score-box {
    text-align: center;
    margin-bottom: 20px;
}

.score {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
}

.stars-large {
    color: #ffa000;
    font-size: 24px;
}

.pros-cons {
    list-style: none;
    margin-bottom: 20px;
}

.pro::before {
    content: "✅ ";
}

.con::before {
    content: "❌ ";
}

.pros-cons li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 40px 0 20px;
    text-align: center;
    font-size: 13px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #fff;
}

.copy {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}