body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

header {
    background: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header .container {
    display: flex;
    justify-content: center;
}

header h1 {
    margin: 0;
}

#hero {
    background: linear-gradient(120deg, #84fab0, #8fd3f4);
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    color: white;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #84fab0, #8fd3f4);
    animation: backgroundAnimation 10s linear infinite;
    z-index: -1;
}

@keyframes backgroundAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25%, -25%) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #333;
    color:
