
/* Additional styles for new sections */
.landing-hero {
    background: linear-gradient(135deg, #2A5C5D, #D4A373);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.landing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.subheadline, .hero-promise {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.trust-indicators {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.trust-indicators span {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 30px;
}
.section {
    padding: 50px 0;
}
.pain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}
.pain-item {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 20px;
    border-radius: 8px;
}
.benefits-grid, .audience-grid, .eeat-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.benefit-card, .audience-card, .eeat-item, .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.benefit-card:hover, .audience-card:hover {
    transform: translateY(-5px);
}
.process-steps {
    list-style: none;
    counter-reset: step;
}
.process-steps li {
    counter-increment: step;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
.process-steps li::before {
    content: counter(step);
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.faq-list .faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
}
.faq-item summary {
    font-weight: bold;
    cursor: pointer;
}
.final-cta-section {
    background: #2A5C5D;
    color: #fff;
    text-align: center;
}
.final-cta-section .btn {
    margin: 20px 0;
}
.nf-links {
    list-style: none;
    padding: 0;
}
.nf-links li {
    margin-bottom: 10px;
}
.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
