body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #ffffff;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    color: #cbd5e1;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

/* VIDEO BUTTON */
.video-btn {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
}

.table-center {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
/* PRICING */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.price-box {
    background: #111827;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
}

/* FIX LINK COLORS */
a {
    color: #ffffff;
}

a:visited {
    color: #ffffff;
}