* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #1e1e1e;
    line-height: 1.6;
    padding: 2rem;
}

.hero {
    background: linear-gradient(to right, #eebbc3, #c1d3fe);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: #232946;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #3e3e3e;
}

.button {
    background-color: #232946;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #444ce2;
}

.impact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 1.5rem;
    color: #232946;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 2rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 3rem;
}
