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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.advertorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.article-header img {
    max-width: 250px;
    max-height: 50px;
}

.article-header {
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    top: 0;
    z-index: 100;
    width: 100%;
}

.logo-and-disclaimer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: #6c757d;
}

.category {
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.separator {
    margin: 0 10px;
}

.article-content {
    padding-top: 1.5rem;
}

.headline {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #212529;
}

.author-title {
    font-size: 14px;
    color: #6c757d;
}

.read-time {
    color: #6c757d;
    font-size: 14px;
}

.hero-section {
    margin-bottom: 30px;
}

.hero-image img, .hero-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.image-caption {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #212529;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
    color: #495057;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.content-section p {
    margin-bottom: 20px;
}

.highlight-box {
    background-color: rgba(255, 238, 105, 0.5);
    color: 212529;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}
.testimonial-section img {
    width: 100px;
}

.highlight-icon {
    font-size: 28px;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-section {
    margin: 40px 0;
}

.testimonial-card {
    background-color: rgba(149, 191, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #495057;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #212529;
}

.testimonial-author span {
    font-size: 14px;
    color: #6c757d;
}

.product-showcase {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.product-image {
    width: 250px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #212529;
}

.product-info p {
    margin-bottom: 20px;
    color: #495057;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #495057;
}

.benefit-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 20px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.2;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    margin: 40px 0;
    text-align: center;
    width: 100%;
}

.cta-lead {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inline-cta {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background-color: #22c55e;
    color: white;
    padding: 14px 32px;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.cta-button:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cta-button.primary {
    width: 100%;
    background-color: rgb(29, 186, 51);
    border-bottom: 2px solid #16a34a;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.cta-button.primary:hover {
    background-color: rgb(29, 186, 51);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button.subtle {
    background-color: #6b7280;
    font-size: 15px;
    padding: 12px 28px;
}

.cta-button.subtle:hover {
    background-color: #4b5563;
}

.cta-disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 15px;
}

.final-section {
    margin-bottom: 40px;
}

.final-section p {
    margin-bottom: 20px;
}

.article-footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links .separator {
    margin: 0 15px;
}

.copyright {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-showcase {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin: 0 auto;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .headline {
        font-size: 28px;
    }
    
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1.5rem;
    }
}