/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.trust-content {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 2rem;
    color: #C4694A;
}

.trust-item span {
    color: #8A8480;
    font-size: 0.9rem;
}

/* Nutrition Benefits */
.nutrition-benefits {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.nutrition-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #8A8480;
    margin-bottom: 3rem;
}

.trimester-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trimester-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #E4DED8;
}

.trimester-card h3 {
    color: #1C1A18;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trimester-card ul {
    list-style: none;
    padding: 0;
}

.trimester-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F7F4F0;
}

.trimester-card li:last-child {
    border-bottom: none;
}

/* How It Works */
.how-it-works {
    background: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #C4694A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

/* SEO Content Section */
.seo-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    line-height: 1.8;
}

.seo-content h2 {
    color: #C4694A;
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    color: #1C1A18;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content p {
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: #F7F4F0;
    border-radius: 20px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    color: #8A8480;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #C4694A;
}

.faq-item h3 {
    color: #1C1A18;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #8A8480;
    line-height: 1.7;
}

/* Hero Keywords */
.hero-keywords {
    margin-top: 2rem;
    padding: 1rem;
    background: #F7F4F0;
    border-radius: 10px;
    text-align: center;
}

.hero-keywords p {
    color: #8A8480;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Disclaimer */
.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: #8A8480;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
    }
    
    .trimester-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}