body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.banner {
    background: linear-gradient(135deg, #0056ff, #6a0dad);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-button {
    background-color: #ffcc00;
    color: #0056ff;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffaa00;
    color: white;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffcc00;
}

.stat p {
    font-size: 1.2rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.banner-image {
    flex: 1;
    max-width: 600px;
}

.banner-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .stats {
        justify-content: center;
        gap: 30px;
    }

    .stat h2 {
        font-size: 2.5rem;
    }

    .stat p {
        font-size: 1rem;
    }

    .banner-image img {
        max-width: 350px;
    }
}
