/* Base & Reset */
:root {
    --primary-color: #6a9b63;
    /* Soft matcha green */
    --primary-hover: #4e7a48;
    --secondary-color: #eaf1e7;
    /* Very light pastel green */
    --text-color: #334431;
    /* Dark aesthetic green-grey */
    --light-text: #5e6f5c;
    --bg-color: #ffffff;
    --bg-light: #f7faf6;
    /* Soft off-white green */
    --accent-color: #d1e2c6;
    /* Mid soft green */
    --white: #ffffff;

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --border-radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1.125rem;
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

.highlight-alt {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.mt-md {
    margin-top: 2rem;
}

.mb-lg {
    margin-bottom: 3rem;
}

.shadow-md {
    box-shadow: none;
}

.mt-xl {
    margin-top: 4rem;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.align-center {
    align-items: center;
}

.bg-light {
    background-color: var(--bg-light);
}

section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(106, 155, 99, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(78, 122, 72, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav .nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.desktop-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
}

.desktop-nav .nav-links a:hover {
    color: var(--primary-color);
}

.desktop-nav .nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    z-index: 999;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
}

.floating-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.bubble-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.bubble-3 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}

/* About Section */
.rounded-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.125rem;
}

.feature-list svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

/* Benefits */
.benefit-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Pros and Cons Section */
.pros-box,
.cons-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pros-box {
    border-top: 4px solid var(--primary-color);
}

.cons-box {
    border-top: 4px solid #d9534f;
}

.pros-title {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.cons-title {
    color: #d9534f;
    display: flex;
    align-items: center;
}

.cons-list svg {
    color: #d9534f;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: var(--text-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.comparison-table .highlight-col {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

/* Ingredients Section */
.ingredient-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ingredient-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid transparent;
}

.ingredient-item:hover {
    border-left-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.ingredient-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
}

.cta-banner h3 {
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Author Section (E-E-A-T) */
.author-section {
    padding: 5rem 0;
}

.author-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.author-image {
    display: flex;
    justify-content: center;
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--accent-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%236a9b63" viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.author-content h3 {
    margin-bottom: 0.5rem;
}

.citation {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 5rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: #a0a8a0;
    max-width: 400px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a8a0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    background-color: #273525;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: #a0a8a0;
}

/* === 30-Day Experience Section === */
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-week {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.week-badge {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    align-self: center;
}

.experience-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    font-size: 1.1rem;
}

/* === Who Is It For Section === */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.who-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid transparent;
}

.who-card.who-yes {
    border-top-color: var(--primary-color);
}

.who-card.who-maybe {
    border-top-color: #f59e0b;
}

.who-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* === Results Timeline Section === */
.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.timeline-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.timeline-dot {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.timeline-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

/* === Pricing Section === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.pricing-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.best-value-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.where-to-buy {
    margin-top: 4rem;
}

.retailer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.retailer-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.retailer-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.retailer-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* === Customer Reviews Section === */
.reviews-aggregate {
    margin-bottom: 3rem;
}

.big-rating {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-heading);
}

.stars-lg {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--primary-color);
    font-weight: 500;
}

.reviews-grid {
    margin-top: 2rem;
}

/* === Safety Section === */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.safety-block {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-top: 4px solid transparent;
}

.safety-block.safety-green {
    background: #f0fdf4;
    border-top-color: #22c55e;
}

.safety-block.safety-yellow {
    background: #fffbeb;
    border-top-color: #f59e0b;
}

.safety-block.safety-red {
    background: #fff1f2;
    border-top-color: #f43f5e;
}

.safety-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    color: var(--light-text);
}

.safety-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Affiliate Disclosure & Last Updated */
.affiliate-disclosure {
    background-color: #fffbeb;
    border-bottom: 1px solid #fde68a;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.affiliate-disclosure p {
    margin: 0;
    color: #78350f;
    font-size: 0.9rem;
    text-align: center;
}

.affiliate-disclosure a {
    color: var(--primary-color);
    text-decoration: underline;
}

.last-updated-bar {
    background-color: var(--bg-light);
    border-top: 1px solid var(--accent-color);
    padding: 1rem 0;
}

.last-updated-bar p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Legal Pages & Forms Specific Styles */
.pt-xl {
    padding-top: 8rem;
}

.legal-content-box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 6rem;
}

.legal-content-box h1 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-content-box h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.standard-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.125rem;
}

.standard-list li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #d1d8d0;
    background-color: var(--bg-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 155, 99, 0.1);
}

.contact-form button[type="submit"] {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        order: 2;
    }

    .about-image-wrapper {
        order: 1;
    }

    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .ingredient-showcase {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-grid,
    .timeline-track,
    .pricing-grid,
    .retailer-grid,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-week {
        grid-template-columns: 1fr;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding: 1.5rem;
    }

    .legal-content-box {
        padding: 2rem 1.5rem;
    }
}

/* Data Table and Image Utilities */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eaf1e7;
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
}

.highlight-col {
    background-color: #f0fdf4;
    font-weight: 600;
}


@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .floating-bubble {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}