.hero {
    text-align: center;
    padding: 100px 2rem;
    background: #0a0756;
    color: rgb(0, 0, 0);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        0 2px 0 #5d1c1c,
        0 4px 15px rgba(255, 107, 107, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}
.hero-description {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.6rem;
        padding: 1rem 1.5rem;
        max-width: 90%;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1.4rem;
        padding: 0.8rem 1.2rem;
    }
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.features {
    background: #561010e7;
    color: #040404;
    padding: 100px 2rem;
    margin-top: -50px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.feature-card {
    background: linear-gradient(100deg, #0a0756 25%, #354f7c 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #c0c7d4;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        padding: 60px 1rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
}

body {
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
}

.navbar {
    margin: 0;
}
