* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #1e2b2c;
    line-height: 1.5;
}

/* Tiffany color palette */
:root {
    --tiffany: #0abab5;
    --tiffany-light: #e0f7f6;
    --tiffany-soft: #b0e4e1;
    --tiffany-dark: #077c78;
    --warm-white: #f9fefd;
    --slate: #2f3e40;
    --shadow-sm: 0 4px 6px rgba(10, 186, 181, 0.1);
    --shadow-md: 0 10px 25px rgba(10, 186, 181, 0.15);
    --shadow-lg: 0 20px 40px rgba(10, 186, 181, 0.2);
    --transition: all 0.3s ease;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10, 186, 181, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tiffany);
}

.logo-img {
    width: 60px; 
    height: 60px; 
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tiffany);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-outline):hover::after {
    width: 100%;
}



/* Buttons */
.btn-outline {
    border: 2px solid var(--tiffany);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--tiffany-dark);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--tiffany);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--tiffany);
    border: 2px solid var(--tiffany);
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--tiffany-dark);
    border-color: var(--tiffany-dark);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-content .badge {
    background: var(--tiffany-light);
    color: var(--tiffany-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--tiffany-soft);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--slate);
}

.hero-content h1 .highlight {
    color: var(--tiffany);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--tiffany-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4d5f62;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1 1 400px;
    background: linear-gradient(145deg, var(--tiffany-light), #ffffff);
    border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(10, 186, 181, 0.3));
}

.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, white, var(--tiffany-light));
    position: relative;
    overflow: hidden;
}

.features-section::before {

    position: absolute;
    font-size: 8rem;
    opacity: 0.02;
    top: 50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.features-section::after {

    position: absolute;
    font-size: 8rem;
    opacity: 0.02;
    bottom: 50px;
    left: -50px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 186, 181, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--tiffany);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    background: var(--tiffany-light);
    width: 70px;
    height: 70px;
    border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    border-radius: 50%;
    background: var(--tiffany);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--tiffany-dark);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--slate);
    line-height: 1.3;
}

.feature-card p {
    color: #4d5f62;
    line-height: 1.6;
    flex-grow: 1;
}

/* Features Tagline (Healthy food. Happy tummy. Happy dog.) */
.features-tagline {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 2px dashed var(--tiffany);
    position: relative;
    z-index: 2;
}

.tagline-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tiffany-dark);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(10, 186, 181, 0.1);
}

.tagline-paw {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tagline-paw i {
    font-size: 1.5rem;
    color: var(--tiffany);
    animation: wagPaw 2s infinite;
}

.tagline-paw i:nth-child(1) { animation-delay: 0s; }
.tagline-paw i:nth-child(2) { animation-delay: 0.3s; }
.tagline-paw i:nth-child(3) { animation-delay: 0.6s; }

@keyframes wagPaw {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.fa-poop {
    transform: rotate(180deg);
}

/* Adaptability */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .tagline-text {
        font-size: 1.5rem;
    }
    
    .features-tagline {
        padding: 1.5rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 1.2rem;
    }
    
    .tagline-paw i {
        font-size: 1.2rem;
    }
}

/* Animation of the appearance of cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.nutrition-icon::before {
    content: "🥩";
    font-size: 2rem;
}

.digestion-icon::before {
    content: "💩";
    font-size: 2rem;
}

.calorie-icon::before {
    content: "📊";
    font-size: 2rem;
}



.history-icon::before {
    content: "📅";
    font-size: 2rem;
}

.health-icon::before {
    content: "❤️";
    font-size: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--slate);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--tiffany);
    border-radius: 2px;
}

.section-title p {
    color: #577074;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 186, 181, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--tiffany);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    background: var(--tiffany-light);
    width: 65px;
    height: 65px;
    border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--tiffany-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #4d5f62;
}

/* Screenshots Section */
.screenshots-section {
    padding: 5rem 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-card {
    text-align: center;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, var(--tiffany-light), white);
    border-radius: 2rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--tiffany-soft);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

.screenshot-card p {
    font-weight: 600;
    color: var(--slate);
    margin-top: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
}

.showcase {
    background: var(--tiffany-light);
    border-radius: 4rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase::before {

    position: absolute;
    font-size: 16rem;
    opacity: 0.03;
    bottom: -30px;
    right: -30px;
    transform: rotate(15deg);
    pointer-events: none;
}

.showcase-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.showcase-text {
    flex: 1 1 300px;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: var(--slate);
}

.tiffany-text {
    color: var(--tiffany);
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.8rem 0;
}

.stars {
    color: #ffb347;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.rating-text {
    font-weight: 600;
    color: var(--slate);
}

.showcase-text blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #1f3b3d;
    border-left: 6px solid var(--tiffany);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tiffany);
}

.testimonial-author p {
    color: #577074;
}


.phone-card {
    background: white;
    border-radius: 1.8rem;
    padding: 1.3rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 186, 181, 0.3);
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
    transition: all 0.3s ease;
}

.phone-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tiffany);
}

.card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.phone-card p {
    font-weight: 600;
    color: var(--slate);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--tiffany-light), white);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(10, 186, 181, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--tiffany);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--slate);
}

.faq-question i {
    color: var(--tiffany);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--tiffany-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #4d5f62;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
}

.download-cta {
    background: linear-gradient(135deg, var(--tiffany) 0%, #4ecdc4 100%);
    border-radius: 3rem;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.download-cta::before {

    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    bottom: -20px;
    left: -20px;
    transform: rotate(-10deg);
}

.download-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.download-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.store-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.store-btn {
    background: #1e2b2c;
    border-radius: 60px;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn:hover {
    background: black;
    border-color: white;
}

.availability {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.7;
}

footer {
    background: var(--slate);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 186, 181, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tiffany);
}

footer .logo {

    font-size: 1.8rem;
}

.copyright {
    color: var(--tiffany-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.footer-contact {
    text-align: center;
    margin: 1rem 0 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    border: 1px solid rgba(10, 186, 181, 0.3);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

.footer-contact p {
    color: var(--tiffany-soft);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--tiffany);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;

}

.contact-email i {
    font-size: 1.3rem;
    transition: var(--transition);
}



/* Adaptability for footer*/
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-contact {
        padding: 1.5rem;
        margin: 1rem 1rem 1.5rem;
    }
    
    .footer-contact p {
        font-size: 1rem;
    }
    
    .contact-email {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-contact p {
        font-size: 0.95rem;
    }
    
    .contact-email {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.7rem;
    }
    
    .contact-email i {
        font-size: 1.1rem;
    }
}



/* Responsive */
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-img {
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .download-cta h2 {
        font-size: 2.2rem;
    }
    
    .showcase {
        border-radius: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social a {
        margin: 0 0.6rem;
    }
}

/* Health Section */
.health-section {
    padding: 5rem 0;
    background: white;
}

.health-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.health-content.reverse {
    flex-direction: row-reverse;
}

.health-text {
    flex: 1;
}

.health-text h2 {
    font-size: 2.5rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
    position: relative;
}

.health-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--tiffany);
    border-radius: 2px;
}

.health-text h3 {
    font-size: 2rem;
    color: var(--tiffany-dark);
    margin-bottom: 1.5rem;
}

.health-text p {
    color: #4d5f62;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.health-text p.statistic {
    font-weight: 500;
    color: var(--slate);
    border-left: 4px solid var(--tiffany);
    padding-left: 1.5rem;
    background: var(--tiffany-light);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.health-image {
    flex: 1;
    text-align: center;
}

.health-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--tiffany-soft);
}

/* Stories Section */
.stories-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--tiffany-light), white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 186, 181, 0.2);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tiffany);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--tiffany), var(--tiffany-dark));
    color: white;
}

.story-dog-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.story-dog-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.story-dog-info p {
    opacity: 0.9;
    font-size: 1rem;
}

.story-content {
    padding: 1.5rem;
}

.story-content p {
    color: #4d5f62;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-content p strong {
    color: var(--tiffany-dark);
}

.story-quote {
    font-style: italic;
    color: var(--slate) !important;
    background: var(--tiffany-light);
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    margin-top: 1rem;
}

.story-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--tiffany);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.story-results {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.result-badge {
    background: var(--tiffany-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    border: 1px solid var(--tiffany-soft);
}

.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tiffany-dark);
}

.result-label {
    font-size: 0.85rem;
    color: #577074;
}

/* Science Section */
.science-section {
    padding: 5rem 0;
    background: white;
}

.science-content {
    max-width: 1000px;
    margin: 0 auto;
}

.science-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--tiffany-light);
    border-radius: 2rem;
}

.science-stat {
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.science-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--tiffany-dark);
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 6px solid var(--tiffany);
}

.citation {
    font-size: 0.9rem;
    color: #577074;
    font-style: italic;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.science-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 186, 181, 0.2);
    transition: var(--transition);
}

.science-card:hover {
    transform: translateY(-5px);
    border-color: var(--tiffany);
    box-shadow: var(--shadow-lg);
}

.science-icon {
    background: var(--tiffany-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.science-icon i {
    font-size: 2rem;
    color: var(--tiffany-dark);
}

.science-card h3 {
    font-size: 1.4rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.science-card p {
    color: #4d5f62;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.science-list {
    list-style: none;
    padding: 0;
}

.science-list li {
    color: #4d5f62;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.science-list li::before {
    content: '✓';
    color: var(--tiffany);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.science-benefit {
    font-weight: 500;
    color: var(--tiffany-dark) !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--tiffany-soft);
}

.science-conclusion {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--tiffany-light), white);
    border-radius: 2rem;
}

.science-conclusion p {
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.science-sources {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: inline-block;
    text-align: left;
}

.science-sources h4 {
    color: var(--tiffany-dark);
    margin-bottom: 0.5rem;
}

.science-sources p {
    font-size: 0.95rem;
    color: #577074;
    margin-bottom: 0.3rem;
}

@media (max-width: 1024px) {
    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .health-content,
    .health-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .health-text h2 {
        font-size: 2rem;
    }
    
    .health-text h3 {
        font-size: 1.5rem;
    }
    
    .health-text p {
        font-size: 1rem;
    }
    
    .science-grid {
        grid-template-columns: 1fr;
    }
    
    .science-intro {
        padding: 1.5rem;
    }
    
    .science-stat {
        font-size: 1rem;
    }
    
    .science-highlight {
        font-size: 1.1rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .story-results {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .health-text h2 {
        font-size: 1.8rem;
    }
    
    .health-text h3 {
        font-size: 1.3rem;
    }
    
    .science-conclusion p {
        font-size: 1rem;
    }
}