.page-html {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.page-body {
    --primary-color: #0070f3;
    --primary-hover: #005bb5;
    --bg-color: #fcfcfc;
    --text-main: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --accent: #f59e0b;
    --success: #10b981;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--primary-hover);
}

.footer-nav-link {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--text-main);
}

.container {
    max-width: 800px;
    margin: 0 auto !important;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.advertorial-header {
    background-color: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin: 0;
}

.site-main {
    display: block;
}

.hero-section {
    padding: 40px 0 20px;
    display: block;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 0 30px 0;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 0 0 30px 0;
    display: block;
}

.content-section {
    display: block;
}

.content-section-padded {
    padding: 40px 0;
    display: block;
}

.section-title {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sub-title {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.paragraph-text {
    font-size: 17px;
    margin: 0 0 20px 0;
    color: #374151;
}

.list-container {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

.list-item {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #374151;
}

.product-highlight-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.product-highlight-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
}

.cta-wrapper {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    white-space: normal;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 243, 0.4);
}

.cta-subtext {
    display: block;
    margin: 10px 0 0 0;
    font-size: 14px;
    color: var(--text-muted);
}

.pros-cons-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.pros-card, .cons-card {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pros-title {
    color: var(--success);
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.cons-title {
    color: #ef4444;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list-item, .cons-list-item {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #374151;
}

.pros-list-item::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

.cons-list-item::before {
    content: "✗";
    color: #ef4444;
    font-weight: bold;
    margin-right: 8px;
}

.site-footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin: 60px 0 0 0;
    display: block;
}

.footer-disclaimer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.footer-nav-item {
    margin: 0;
    padding: 0;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.bold-text {
    font-weight: 700;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
    .sub-title {
        font-size: 20px;
    }
    .paragraph-text, .list-item, .pros-list-item, .cons-list-item {
        font-size: 16px;
    }
    .pros-cons-grid {
        flex-direction: column;
        gap: 15px;
    }
    .cta-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    .content-section-padded {
        padding: 20px 0;
    }
}
