body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1b2a;
    color: #ffffff;
}

.banner {
    background: linear-gradient(to right, #333, #1e2247);
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-text h2 {
    color: #ffd700;
    margin: 0;
    font-size: 2rem;
}

.banner-text p {
    color: #ffdd57;
    font-size: 1.2rem;
}

.main-content {
    text-align: center;
    padding: 60px 20px;
}

.main-title {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.highlight {
    color: #ffd700;
}

.bonus-offer {
    font-size: 1.8rem;
    color: #ffdd57;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffca28;
    color: #121433;
    border: none;
    padding: 15px 40px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-large {
    padding: 25px 60px;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(255, 202, 40, 0.5);
    transform: scale(1.1);
}

.enhanced-button {
    font-weight: bold;
    background-image: linear-gradient(45deg, #ffdd57, #ffca28);
    border: 3px solid #ffd700;
}

.cta-button:hover {
    background-color: #ffd700;
    transform: scale(1.2);
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 50px 20px;
    flex-wrap: wrap;
}

.feature-box {
    background-color: #1e2247;
    padding: 30px;
    border-radius: 15px;
    width: 22%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-box p {
    color: #dcdcdc;
}

.content {
    margin: 20px;
    text-align: left;
}

.content-box {
    background-color: #1e2247;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #ffffff;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}
