/* 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;
}

/* High Times Header */
.hightimes-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.ht-top-bar {
    background-color: #2a2a2a;
    height: 4px;
}

.ht-main-header {
    background-color: #fff;
}

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

.ht-social-icons {
    flex-shrink: 0;
}

.ht-logo {
    flex-shrink: 1;
}

.ht-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons-image {
    height: 24px;
    width: auto;
}

.ht-icon {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: default;
    border: 2px solid #000;
    border-radius: 2px;
    background: transparent;
    line-height: 1;
}

.facebook-icon {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.twitter-icon {
    font-weight: bold;
    font-size: 14px;
}

.youtube-icon {
    font-size: 12px;
    border-radius: 50%;
}

.instagram-icon {
    font-size: 14px;
    border-radius: 4px;
}

.search-icon-image {
    width: auto;
    height: 24px;
    
    cursor: default;
    display: block;
}

.ht-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ht-logo img {
    height: 50px;
    width: auto;
}

.ht-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: fit-content;
}

.ht-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.ht-nav-item {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    cursor: pointer;
}

.ht-nav-item:hover {
    color: #666;
}

.ht-nav-item .chevron {
    font-size: 10px;
    margin-left: 2px;
    display: inline-block;
}

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

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

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

.main-headline {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.subheadline {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.article-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

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

.author-with-image {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.author {
    font-weight: 600;
    font-style: normal;
    color: #333;
    margin: 0;
}

.author-rating {
    margin: 5px 0;
}

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

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

.social-share {
    display: flex;
    gap: 10px;
}

.social-icon {
    padding: 8px 12px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #e0e0e0;
}

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

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

/* Story Sections */
.story-section,
.discovery-section {
    margin: 40px 0;
}

.story-section p,
.discovery-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #1a5f1a;
}

h2 {
    font-size: 28px;
    color: #000;
    margin: 40px 0 20px 0;
}

h3 {
    font-size: 24px;
    color: #000;
    margin: 30px 0 15px 0;
}

h4 {
    font-size: 20px;
    color: #000;
    margin: 20px 0 10px 0;
}

/* Highlight Box */
.highlight-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

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

.highlight-box.final {
    background-color: #e8f5e9;
    border-left-color: #4caf50;
}

/* Products Section */
.products-section {
    margin: 50px 0;
    padding: 40px 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

/* Product Mention Section */
.product-mention-section {
    margin: 50px 0;
}

.product-mention-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-card.featured {
    background-color: #1a5f1a;
    color: #fff;
    border: 3px solid #ffc107;
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffc107;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.product-card.featured .product-header {
    border-bottom-color: rgba(255,255,255,0.3);
}

.product-header h3 {
    margin: 0;
    font-size: 24px;
    color: #000;
}

.product-card.featured .product-header h3 {
    color: #fff;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #1a5f1a;
}

.product-card.featured .price {
    color: #ffc107;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.product-card.featured .product-features li {
    border-bottom-color: rgba(255,255,255,0.2);
    color: #fff;
}

.product-features li:last-child {
    border-bottom: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1a5f1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #2d5016;
    transform: scale(1.02);
}

.cta-button.pack-b {
    background-color: #4caf50;
}

.cta-button.pack-b:hover {
    background-color: #45a049;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
    display: block;
    text-align: center;
    margin: 30px auto;
    max-width: 400px;
}

.value-highlight {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #1a5f1a;
}

.value-highlight p {
    margin: 0;
    font-size: 20px;
    color: #1a5f1a;
    font-weight: bold;
}

/* Quality Section */
.quality-section {
    margin: 50px 0;
    padding: 40px 20px;
    background-color: #fff;
}

.quality-section h2 {
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    align-items: start;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quality-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.quality-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.quality-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.quality-icon {
    font-size: 28px;
    line-height: 1;
}

.quality-content {
    flex: 1;
}

.quality-item h4 {
    margin: 0 0 10px 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.quality-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.quality-image {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    background-color: #1a5f1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26, 95, 26, 0.3);
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.badge:hover {
    background-color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 26, 0.4);
}

/* How It Works */
.how-it-works {
    margin: 50px 0;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.step {
    text-align: center;
}

.step-video {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-video video {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #1a5f1a;
    object-fit: cover;
    background-color: #000;
}

.step h3 {
    color: #000;
    margin: 20px 0 15px 0;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* THC Section */
.thc-section {
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a5f1a 0%, #2d5016 100%);
    border-radius: 8px;
    color: #fff;
}

.thc-section h2 {
    color: #fff;
    text-align: center;
}

.thc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.thc-card {
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 8px;
    color: #333;
}

.thc-card h3 {
    color: #000;
    font-size: 28px;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 20px;
}

.check-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.thc-image {
    margin-top: 20px;
}

.thc-image img {
    width: 100%;
    border-radius: 8px;
}

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

.rating-header {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    font-size: 32px;
    color: #ffc107;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.rating-text {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a5f1a;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #1a5f1a;
}

.faq-item h4 {
    color: #1a5f1a;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-image {
    position: relative;
}

.faq-image img {
    width: 100%;
    border-radius: 8px;
}

/* Final CTA */
.final-cta {
    text-align: left;
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border: 3px solid #1a5f1a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: #333;
}

.final-cta h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 28px;
}

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

.cta-link {
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
}

.cta-link:hover {
    text-decoration: underline;
}

.final-cta .cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
    background-color: #4caf50;
    color: #fff;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.final-cta .cta-button:hover {
    background-color: #45a049;
}

.cta-highlight-box {
    background-color: #fff9e6;
    border: 2px dashed #333;
    border-radius: 6px;
    padding: 20px;
    margin-top: 30px;
}

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

.cta-highlight-box strong {
    color: #ff6b00;
    font-weight: 700;
}

/* Conclusion */
.conclusion {
    margin: 50px 0;
}

.conclusion p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.sidebar-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    color: #333;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sidebar-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    color: #000;
    margin-bottom: 15px;
}

.sidebar-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.sidebar-offer {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    padding: 12px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #4caf50;
}

.sidebar-rating {
    text-align: center;
    margin: 20px 0;
    padding: 15px 0;
}

.sidebar-rating .rating-stars {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

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

.sidebar-rating {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Sidebar Reviews */
.sidebar-reviews {
    margin: 20px 0;
    text-align: left;
}

.sidebar-review-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
    font-style: italic;
}

.sidebar-review-author {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-align: right;
    margin: 0;
}

.sidebar-cta {
    margin-bottom: 20px;
    background-color: #4caf50;
}

.sidebar-cta:hover {
    background-color: #45a049;
}

/* Pulse Animation for CTA Button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

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

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

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

.comments-section h2 {
    margin-bottom: 30px;
    color: #000;
    font-size: 24px;
}

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

.comment {
    display: flex;
    gap: 12px;
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    position: relative;
}

.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: #1877f2;
}

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

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-disclosure {
    margin-bottom: 30px;
}

.footer-disclosure h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.footer-copyright {
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

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

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

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-image {
        position: static;
        order: -1;
    }

    .quality-item {
        padding: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 28px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .author-with-image {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-details {
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .step-video video {
        width: 200px;
        height: 200px;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .comment.reply {
        margin-left: 20px;
    }

    .ht-header-content {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .ht-social-icons {
        display: none;
    }

    .ht-logo {
        flex: 0 1 auto;
        width: auto;
    }

    .ht-header-right {
        display: none;
    }

    .ht-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 24px;
    }

    .subheadline {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta-button.large {
        padding: 15px 25px;
        font-size: 16px;
    }

    .comment-input-header {
        flex-direction: column;
    }

    .comment-avatar {
        align-self: flex-start;
    }
}

/* 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: 1px solid #e0e0e0;
}

.mobile-cta-text {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: background-color 0.3s;
}

.mobile-cta-button:hover {
    background-color: #45a049;
}

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

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

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

