.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9E1E6 50%, #FFC1CC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: auto;
    width: 200px;
    max-width: 200px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
    text-align: center;
}

.features-list li:nth-child(1) { animation-delay: 0.3s; }
.features-list li:nth-child(2) { animation-delay: 0.5s; }
.features-list li:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
    }
}

.features-list i {
    color: #FF69B4;
    margin-right: 0.5rem;
    font-size: 1.3rem;
    min-width: 20px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-list {
        text-align: center;
    }
}