.hero {
    background-image: url('https://images.unsplash.com/photo-1632345031435-8727f6897d53?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: lighten;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #e38fa9;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}


@media (max-width: 768px) {
    .features .container {
        grid-template-columns: 1fr;
    }
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(216, 137, 149, 0.2);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 2.5rem;
    color: #e38fa9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c45b7d;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}