/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Update Banner */
.update-banner {
    margin-top: 20px;
    padding: 0;
}

.update-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    background-color: #fffad5;
    border-bottom: 2px solid #f2df7d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.update-icon {
    width: 24px;
    height: 24px;
    background-color: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.update-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.update-text strong {
    background-color: #fffad5;
    padding: 2px 4px;
}

.update-label {
    color: #dc2626;
    font-weight: 700;
}

.update-message {
    color: #333;
    font-weight: 700;
}

.update-cta {
    color: #3b82f6;
    font-weight: 700;
}

/* Header */
.main-header {
    background-color: #2861a5;
    border-bottom: 2px solid #1e40af;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.logo-image {
    height: 35px;
    width: auto;
    display: block;
}

.trending-indicator {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-cta-button {
    background-color: #047857;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}

.header-cta-button:hover {
    background-color: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.4);
}

/* Main Container */
.main-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Article Content */
.article-content {
    flex: 1;
    max-width: 800px;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.article-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #3b82f6;
    font-weight: 600;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.article-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.title-highlight {
    background-color: rgb(255, 229, 129);
    color: #333;
    padding: 2px 6px;
    display: inline-block;
    font-weight: 700;
}

/* Article Meta */
.article-meta {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

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

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.publish-date {
    font-size: 14px;
    color: #666;
}

.publish-date-with-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars-image {
    height: 16px;
    width: auto;
    display: inline-block;
}

/* Story Sections */
.story-section,
.life-changing-section,
.solution-section,
.how-it-works-section,
.experience-section,
.faq-section,
.pricing-section,
.conclusion {
    margin: 40px 0;
}

.story-section p,
.life-changing-section p,
.solution-section p,
.how-it-works-section p,
.experience-section p,
.faq-section p,
.pricing-section p,
.conclusion p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.lead-paragraph {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

h2 {
    font-size: 32px;
    color: #333;
    margin: 50px 0 25px 0;
    font-weight: 700;
}

h3 {
    font-size: 26px;
    color: #333;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

/* Green Highlight Box (for key points/important info) */
.highlight-box-green {
    background-color: #d1fae5;
    border-left: 4px solid #047857;
    padding: 25px;
    margin: 35px 0;
    border-radius: 4px;
}

.highlight-box-green p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* Blue Feature/Steps Box */
.features-blue-box,
.steps-blue-box {
    background-color: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 30px;
    margin: 35px 0;
    border-radius: 4px;
}

.features-blue-box h3,
.steps-blue-box h3 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 20px;
}

.features-list,
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.steps-list li {
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    border-bottom: 1px solid #93c5fd;
}

.features-list li:last-child,
.steps-list li:last-child {
    border-bottom: none;
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li {
    padding-left: 40px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 12px;
    background-color: #3b82f6;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* FAQ Section - Green Boxes */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background-color: #d1fae5;
    border-left: 4px solid #047857;
    padding: 25px;
    margin: 25px 0;
    border-radius: 4px;
}

.faq-question {
    color: #065f46;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.faq-answer {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* Article Images */
.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Media Logos */
.media-logos {
    text-align: center;
    padding: 20px 0;
    margin: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.brands-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta-section {
    margin: 50px 0;
}

.final-cta-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.final-cta-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.cta-highlight-box {
    background-color: #fef3c7;
    border: 2px dashed #000;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.cta-highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cta-highlight-box p strong:first-child {
    color: #dc2626;
}

.cta-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #1e40af;
}

.cta-subtext {
    margin-top: 15px !important;
    font-size: 14px !important;
    color: #dc2626 !important;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #047857;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.final-cta-section .cta-button {
    display: block;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background-color: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(4, 120, 87, 0.5);
    }
}

.cta-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.cta-button.pulse:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Sidebar */
.sidebar {
    width: 320px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Sidebar CTA Box */
.sidebar-cta-box {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.sidebar-offer-image {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.sidebar-offer-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.offer-highlight {
    text-align: center;
    margin: 0;
    padding: 10px 15px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 0;
    opacity: 0.9;
}

.offer-badge {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-highlight p {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.offer-benefits {
    list-style: none;
    margin: 20px 25px;
    padding: 0;
}

.offer-benefits li {
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.offer-benefits li:last-child {
    border-bottom: none;
}

.sidebar-cta-button {
    display: block;
    width: calc(100% - 50px);
    padding: 15px;
    background-color: #047857;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.sidebar-cta-button:hover {
    background-color: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
}

.sidebar-cta-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.sidebar-cta-button.pulse:hover {
    animation: pulse 1s ease-in-out infinite;
}

.trust-indicators {
    margin: 20px 25px 0;
    padding: 20px 0 25px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.trust-text {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
}

/* Sidebar Reviews Section */
.sidebar-reviews-section {
    margin: 20px 25px 0;
    padding: 20px 0 25px;
    border-top: 1px solid #e0e0e0;
}

.sidebar-rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.sidebar-stars-image {
    height: 18px;
    width: auto;
    display: inline-block;
}

.sidebar-rating-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.sidebar-testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-testimonial-item {
    padding: 0;
    margin: 0;
}

.sidebar-testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 8px 0;
    font-style: italic;
}

.sidebar-testimonial-author {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/* Comments Section */
.comments-section {
    background-color: #f9fafb;
    padding: 50px 0;
    margin-top: 50px;
}

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

.comments-section h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.comment-threads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment {
    display: flex;
    gap: 12px;
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e4e6eb;
}

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

.comment-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-author {
    font-weight: 600;
    color: #050505;
    font-size: 15px;
    cursor: pointer;
}

.comment-author:hover {
    text-decoration: underline;
}

.comment-time {
    font-size: 12px;
    color: #65676b;
    cursor: pointer;
}

.comment-time:hover {
    text-decoration: underline;
}

.comment-text {
    color: #050505;
    line-height: 1.3333;
    font-size: 15px;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 4px;
    padding-top: 4px;
}

.comment-like,
.comment-reply {
    background: none;
    border: none;
    color: #65676b;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-right: 4px;
}

.comment-like:hover,
.comment-reply:hover {
    background-color: #f2f3f5;
}

.comment-like {
    color: #3b82f6;
}

.like-count {
    font-size: 13px;
    color: #65676b;
    font-weight: 600;
    margin-left: 8px;
    padding: 4px 0;
}

/* Footer */
.main-footer {
    background-color: #1f2937;
    color: #fff;
    margin-top: 60px;
}

.footer-banner {
    background-color: #111827;
    padding: 10px 0;
    border-bottom: 1px solid #374151;
}

.footer-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.footer-banner .banner-left,
.footer-banner .banner-right {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-section h4 {
    color: #047857;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-logo-image {
    max-width: 105px;
    height: auto;
}

.footer-left {
    text-align: left;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-disclosure {
    margin-bottom: 25px;
    text-align: left;
}

.footer-disclosure h3 {
    color: #047857;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-disclosure p {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* Mobile Sticky CTA Button */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 2px solid #047857;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}

.mobile-cta-text {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background-color: #047857;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.4);
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-cta-button:hover {
    background-color: #065f46;
}

.mobile-cta-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.mobile-cta-button.pulse:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .update-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .update-icon {
        align-self: flex-start;
    }
    
    .update-message {
        font-size: 13px;
    }
    
    .update-cta {
        font-size: 13px;
    }

    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 12px 15px;
    }

    .footer-banner .banner-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .story-section p,
    .life-changing-section p,
    .solution-section p,
    .how-it-works-section p,
    .experience-section p,
    .faq-section p,
    .pricing-section p,
    .conclusion p {
        font-size: 16px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        justify-content: center;
    }

    .mobile-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 22px;
    }
    
    .article-subtitle {
        font-size: 15px;
    }

    .cta-button,
    .sidebar-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .final-cta-section p {
        font-size: 16px;
    }
    
    .cta-highlight-box {
        padding: 15px;
    }
    
    .cta-highlight-box p {
        font-size: 14px;
    }
}
