/* Base styles - Mobile First */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF5E1; /* Light warm background */
    color: #333;
    font-size: 16px; /* Base font size for mobile */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar Styling - Top 5 Browsers */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #FFF5E1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF7E00, #FFB627);
    border-radius: 10px;
    border: 2px solid #FFF5E1;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFB627, #FF7E00);
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF7E00 #FFF5E1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px; /* Optimized for mobile */
    width: 100%;
}
/* Desktop container adjustment */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}
/* Header styles - Mobile first */
header {
    background-color: #FF7E00;
    color: white;
    padding: 16px 0;
}
@media (min-width: 768px) {
    header {
        padding: 20px 0;
    }
}
/* Logo styling handled in mobile section below */
.logo {
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo:hover {
    text-decoration: none;
    color: inherit;
}
/* Hero section styles - Mobile first */
.hero {
    background: linear-gradient(135deg, #FF7E00, #FFB627);
    color: white;
    text-align: center;
    position: relative;
}
.monk-hero-img {
    margin: 0 auto 20px;
    display: block;
}
.hero h1 {
    margin-bottom: 10px;
}
.hero p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}
/* CTA Button - Mobile First, Consistent Across Site */
.cta-button {
    display: inline-block;
    background-color: white;
    color: #FF7E00;
    padding: 14px 28px; /* Thumb-friendly size for mobile */
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-height: 48px; /* Touch target minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: #FF7E00;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.cta-button:active {
    transform: translateY(0);
}
.cta-button.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}
.cta-button.disabled:hover {
    background-color: #ccc;
    color: #666;
    transform: none;
}
/* Larger buttons on desktop */
@media (min-width: 768px) {
    .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Mobile Optimizations - iPhone SE (375px) and up */
.logo {
    font-size: 2rem;
}
/* Hero section - Mobile first */
.hero {
    padding: 60px 0;
}
.monk-hero-img {
    width: 180px;
}
.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 8px;
}
/* Navigation - Mobile first (stacked) */
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
nav .cta-button {
    width: auto;
    min-width: 200px;
}
/* Tablet and up adjustments */
@media (min-width: 600px) {
    .logo {
        font-size: 2.2rem;
    }
    .hero {
        padding: 80px 0;
    }
    .monk-hero-img {
        width: 200px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    nav {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* Desktop adjustments */
@media (min-width: 1024px) {
    .logo {
        font-size: 2.5rem;
    }
    .hero {
        padding: 120px 0;
    }
    .monk-hero-img {
        width: 250px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.4rem;
    }
}

/* About section for larger screens */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center; /* This centers the content horizontally */
    gap: 30px; /* Space between image and text */
    padding: 60px 20px; /* Add space without affecting alignment */
    flex-wrap: wrap;
}
/* Image styling */
.about-image {
    flex: 0 1 30%; /* Image takes 30% of the available space */
}
.monk-about-img {
    width: 100%; /* Ensure the image takes up the full width of its parent */
    height: auto; /* Maintain aspect ratio */
}
/* Text styling */
.about-text {
    flex: 1; /* Text takes the remaining space */
    text-align: left; /* Left-align text */
}
.about h2 {
    font-size: 2.5rem;
    color: #FF7E00;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Mobile adjustments (image on top, text below) */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        max-width: 75%;
    }
    .about-text {
        max-width: 100%; /* Ensure both elements take full width */
    }
    .about-text {
        padding-left: 0;
    }
    .monk-about-img {
        margin-bottom: 20px; /* Add space below the image */
    }
    .about h2 {
        font-size: 2rem; /* Adjust font size for mobile */
    }
    .about p {
        font-size: 1.1rem; /* Adjust paragraph size for mobile */
    }
}

/* Features section - Mobile First */
.features {
    background-color: #FFB627;
    padding: 48px 0;
}
.features h2 {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.2;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-item {
    background-color: white;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.features .icon {
    font-size: 2.5rem;
    color: #FF7E00;
    text-align: center;
    margin-bottom: 12px;
}
.feature-item h3 {
    font-size: 1.2rem;
    color: #FF7E00;
    margin-bottom: 10px;
    line-height: 1.3;
}
.feature-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}
/* Tablet and up */
@media (min-width: 600px) {
    .features {
        padding: 60px 0;
    }
    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .feature-item {
        padding: 28px 24px;
    }
    .features .icon {
        font-size: 2.8rem;
    }
    .feature-item h3 {
        font-size: 1.3rem;
    }
    .feature-item p {
        font-size: 1rem;
    }
}
/* Desktop */
@media (min-width: 1024px) {
    .features {
        padding: 80px 0;
    }
    .features h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .feature-item {
        padding: 30px;
        border-radius: 15px;
    }
    .feature-item:hover {
        box-shadow: 0 6px 15px rgba(255, 183, 39, 0.6);
        transform: translateY(-5px);
    }
    .features .icon {
        font-size: 3rem;
    }
    .feature-item h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

/* Testimonials section styles */
.testimonials {
    background-color: #FFF5E1;
    padding: 80px 0;
}
.testimonials h2 {
    font-size: 2.5rem;
    color: #FF7E00;
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-item:hover {
    box-shadow: 0 6px 15px rgba(255, 183, 39, 0.6); /* Yellow glow on hover */
    transform: translateY(-5px); /* Slight lift effect */
    transition: all 0.3s ease;
}
.testimonial-item p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-author {
    font-weight: bold;
    color: #FF7E00;
}

/* How It Works section styles */
.how-it-works {
    background-color: #FF7E00;
    color: white;
    padding: 80px 0;
}
.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: white; /* White color for the H2 heading */
}
.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.step {
    text-align: center;
    max-width: 250px;
}
.step-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white; /* Ensure the step numbers are white as well */
}
.step-number:hover {
    color: #FFB627; /* Change step number color on hover */
    text-shadow: 0 0 10px rgba(255, 183, 39, 0.8); /* Yellow glow effect */
    transition: all 0.3s ease;
}
.step p {
    font-size: 1.1rem;
    color: white; /* Ensure the step descriptions are white */
}

/* Pricing section - Mobile First */
.pricing {
    background-color: #FFF5E1;
    padding: 48px 0;
}
.pricing h2 {
    font-size: 1.8rem;
    color: #FF7E00;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.2;
}
/* Mobile first - single column */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-item {
    background-color: white;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.pricing-item h3 {
    font-size: 1.3rem;
    color: #FF7E00;
    margin-bottom: 12px;
    line-height: 1.2;
}
.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}
.pricing-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}
.pricing-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* Tablet - 2 columns */
@media (min-width: 600px) {
    .pricing {
        padding: 60px 0;
    }
    .pricing h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pricing-item {
        padding: 28px 24px;
    }
}
/* Desktop - 2 columns centered */
@media (min-width: 1024px) {
    .pricing {
        padding: 80px 0;
    }
    .pricing h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 900px;
    }
    .pricing-item {
        padding: 30px;
        border-radius: 15px;
    }
    .pricing-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .pricing-item h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .price {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .pricing-features li {
        margin-bottom: 10px;
        font-size: 1rem;
    }
}

/* FAQ section - Mobile First */
.faq {
    background-color: #FFB627;
    padding: 48px 0;
}
.faq h2 {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.2;
}
.faq-item {
    padding: 16px;
    background-color: #FFF5E1;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.faq-question {
    font-size: 1rem;
    font-weight: bold;
    color: #FF7E00;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    line-height: 1.3;
}
.faq-question i {
    margin-right: 8px;
    flex-shrink: 0;
}
.faq-answer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}
/* Desktop enhancements */
@media (min-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    .faq h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .faq-item {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(255, 126, 0, 0.6);
        transform: translateY(-5px);
    }
    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .faq-question i {
        margin-right: 10px;
    }
    .faq-answer {
        font-size: 1rem;
        line-height: 1.6;
    }
}
@media (min-width: 1024px) {
    .faq {
        padding: 80px 0;
    }
    .faq h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    .faq-question {
        font-size: 1.2rem;
    }
}

/* Footer Styles */
footer {
    background-color: #FF7E00;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.social-links {
    margin-bottom: 10px;
}
.social-links a {
    margin: 0 10px;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #FFB627; /* Hover color for social icons */
}
.privacy-link a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-link a:hover {
    color: #FFB627;
}

/* Mobile responsiveness for smaller screens */
@media (max-width: 420px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-links {
        margin-bottom: 15px;
    }
    .social-links a {
        font-size: 1.2rem;
        margin: 0 8px;
    }
    .privacy-link a {
        font-size: 0.9rem;
    } 
}

/* Style for the sticky subscribe button and close button */
.sticky-subscribe-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Initially hidden */
}
.sticky-subscribe-container.show {
    display: block; /* Show after 60 seconds */
}
.sticky-subscribe-button {
    background-color: #FF7E00;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
  }
.sticky-subscribe-button:hover {
    background-color: #FFB627;
    color: white;
}
.close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
    border-radius: 50%;
} 

/* About Story Enhanced Section */
.about-story-visual {
    background-color: #FFFAF3;
    padding: 50px 20px;
    border-top: 5px solid #FF7E00;
    border-bottom: 5px solid #FF7E00;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.about-story-visual .container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    justify-content: space-between;
    align-items: flex-start;
}
.story-content {
    flex: 2;
    color: #333;
    font-family: 'Nunito', sans-serif;
}
h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #FF7E00;
    text-align: left;
}
.story-segment {
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.story-segment i {
    font-size: 24px;
    color: #FF7E00;
}
.highlight {
    font-weight: bold;
    color: #FF7E00;
}
.mission i {
    color: #FF7E00;
}
@media (max-width: 768px) {
    .about-story-visual .container {
        flex-direction: column;
    }
    h2 {
        font-size: 26px;
    }
    .story-segment {
        font-size: 16px;
    }
}

/* Healing Benefits Section */
.healing-benefits {
    background: #FFFAF3;
    padding: 40px 0;
    border-radius: 10px;
    text-align: left;
}
.benefits-heading {
    text-align: center;
    font-size: 32px;
    color: #ff7e00;
    font-weight: 700;
    margin-bottom: 20px;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.benefits-icon {
    font-size: 30px;
    color: #ff7e00;
    margin-right: 15px;
}
.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}
.benefit-description {
    font-size: 16px;
    color: #555;
}
@media (max-width: 768px) {
    .benefits-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .benefits-icon {
        margin-bottom: 10px;
    }
}

/* Choose Your App Section - Mobile First */
.choose-apps {
    background-color: #FFF5E1;
    padding: 48px 0;
}
.choose-apps h2 {
    font-size: 1.8rem;
    color: #FF7E00;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
    padding: 0 16px;
}
.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.4;
}
/* Apps grid - Mobile first (single column) */
.apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}
/* Tablet and up - side by side */
@media (min-width: 768px) {
    .choose-apps {
        padding: 60px 0;
    }
    .choose-apps h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 32px;
    }
}
/* Desktop */
@media (min-width: 1024px) {
    .choose-apps {
        padding: 80px 0;
    }
    .choose-apps h2 {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    .apps-grid {
        gap: 40px;
        margin-top: 40px;
    }
}
/* App Card Styles - Mobile First */
.app-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
/* Hover only on desktop */
@media (min-width: 768px) {
    .app-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
    }
}
.app-card-header {
    text-align: center;
    padding: 24px 20px 20px;
    background: linear-gradient(135deg, #FFB627, #FF7E00);
}
.mantra-timer-card .app-card-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}
.app-card-img {
    width: 100px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}
.app-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}
.app-tagline {
    color: white;
    font-size: 0.95rem;
    font-weight: normal;
    margin: 0;
    line-height: 1.3;
}
.app-card-body {
    padding: 24px 20px;
    flex-grow: 1;
}
.app-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
}
.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.app-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.app-features li i {
    color: #FF7E00;
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}
.mantra-timer-card .app-features li i {
    color: #FFB627;
}
.app-best-for {
    background-color: #FFF5E1;
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 4px solid #FF7E00;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}
.mantra-timer-card .app-best-for {
    border-left-color: #FFB627;
}
.app-card-footer {
    padding: 0 20px 24px;
}
.app-cta {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 0;
}
.mantra-cta {
    background-color: #FFB627;
    color: #333;
}
.mantra-cta:hover {
    background-color: #FFA500;
    color: white;
}
/* Desktop enhancements */
@media (min-width: 768px) {
    .app-card {
        border-radius: 20px;
    }
    .app-card-header {
        padding: 30px 30px 20px;
    }
    .app-card-img {
        width: 120px;
        margin-bottom: 20px;
    }
    .app-card h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .app-tagline {
        font-size: 1.1rem;
    }
    .app-card-body {
        padding: 30px;
    }
    .app-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .app-features li {
        padding: 8px 0;
        font-size: 1rem;
    }
    .app-features li i {
        margin-right: 10px;
    }
    .app-best-for {
        padding: 15px;
        border-radius: 10px;
        margin-top: 20px;
        font-size: 0.95rem;
    }
    .app-card-footer {
        padding: 0 30px 30px;
    }
    .app-cta {
        margin-top: 10px;
    }
}

/* Comparison Table Section - Mobile First */
.comparison-section {
    background-color: #FFB627;
    padding: 48px 0;
}
.comparison-section h2 {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 12px;
    padding: 0 16px;
    line-height: 1.2;
}
.comparison-section .section-subtitle {
    color: white;
}
.comparison-table-wrapper {
    overflow-x: auto;
    background-color: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.comparison-table {
    width: 100%;
    min-width: 600px; /* Ensures table doesn't squish on small screens */
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
}
.comparison-table thead {
    background: linear-gradient(135deg, #FF7E00, #FFB627);
    color: white;
}
.comparison-table th {
    padding: 12px 10px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.2;
}
.comparison-table th:first-child {
    border-top-left-radius: 8px;
}
.comparison-table th:last-child {
    border-top-right-radius: 8px;
}
.comparison-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.4;
    vertical-align: middle;
}
.comparison-table td:first-child {
    background-color: #FFF9F0;
    font-weight: 500;
}
.comparison-table tbody tr:hover {
    background-color: #FFF5E1;
}
.comparison-table tbody tr:hover td:first-child {
    background-color: #FFE8CC;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
    padding: 16px 10px;
    font-size: 1.05rem;
}
.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.healing-sounds-col {
    background-color: rgba(255, 126, 0, 0.95);
}
.mantra-timer-col {
    background-color: rgba(255, 182, 39, 0.95);
}
.comparison-note {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.comparison-note p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}
.comparison-note i {
    color: #FFB627;
    margin-right: 8px;
}
/* Desktop enhancements */
@media (min-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    .comparison-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .comparison-table-wrapper {
        border-radius: 15px;
        padding: 20px;
    }
    .comparison-table {
        font-size: 0.95rem;
        min-width: auto;
    }
    .comparison-table th {
        padding: 16px 15px;
        font-size: 1.1rem;
    }
    .comparison-table th:first-child {
        border-top-left-radius: 10px;
    }
    .comparison-table th:last-child {
        border-top-right-radius: 10px;
    }
    .comparison-table td {
        padding: 14px 15px;
    }
    .comparison-table tbody tr:last-child td {
        padding: 18px 15px;
        font-size: 1.1rem;
    }
    .comparison-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 10px;
    }
    .comparison-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 10px;
    }
    .comparison-note {
        border-radius: 15px;
        padding: 20px;
        margin-top: 30px;
    }
    .comparison-note p {
        font-size: 1.05rem;
    }
}
@media (min-width: 1024px) {
    .comparison-section {
        padding: 80px 0;
    }
    .comparison-section h2 {
        font-size: 2.5rem;
    }
    .comparison-table {
        font-size: 1rem;
    }
    .comparison-table th {
        padding: 20px;
        font-size: 1.25rem;
    }
    .comparison-table th:first-child {
        border-top-left-radius: 12px;
    }
    .comparison-table th:last-child {
        border-top-right-radius: 12px;
    }
    .comparison-table td {
        padding: 16px 20px;
    }
    .comparison-table tbody tr:last-child td {
        padding: 20px;
        font-size: 1.15rem;
    }
    .comparison-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
    }
    .comparison-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 12px;
    }
    .comparison-note p {
        font-size: 1.1rem;
    }
}

/* CTA Section Heading */
.cta-heading {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .cta-heading {
        font-size: 2.2rem;
    }
}
@media (min-width: 1024px) {
    .cta-heading {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

/* CTA Buttons Wrapper - Mobile First */
.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
}
.cta-buttons-wrapper .cta-button {
    width: 100%;
}
.mantra-cta-btn {
    background-color: #FFB627;
    color: #333;
}
.mantra-cta-btn:hover {
    background-color: #FFA500;
    color: white;
}
/* Desktop CTA buttons side by side */
@media (min-width: 600px) {
    .cta-buttons-wrapper {
        flex-direction: row;
        gap: 20px;
        max-width: none;
    }
    .cta-buttons-wrapper .cta-button {
        width: auto;
        min-width: 240px;
    }
}

