body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1E6FA8, #3FA9F5, #F5B335);
    color: white;
}

/* NAV */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
}

.logo {
    height: 50px;
}



.cta {
    display: inline-block;
    background: #F5B335;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 60px 20px;
    text-align: center;
}

/* CARD */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
    width: 250px;
    backdrop-filter: blur(10px);
}

.price {
    font-size: 20px;
    margin: 10px 0;
    color: #F5B335;
}

/* GLASS */
.glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 80px 20px;
}

.big {
    font-size: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
}

/

.cta-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cta.ghost {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.trust {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}









