/* Feature Icon */
       
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privacy-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.privacy-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.privacy-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.privacy-banner {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 48px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--primary);
}

.privacy-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.privacy-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.privacy-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.testimonial-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.testimonial-card.featured .quote {
    color: white;
}

.testimonial-card.featured .author-info strong,
.testimonial-card.featured .author-info span {
    color: white;
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.quote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.author-info strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
}


.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.stat-value{
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}


.stat-item {
    display: flex;
    flex-direction: column;
}


@media (max-width: 768px){
    .privacy-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .feature-card{
        justify-items: center;
       }
}