/* ===== Global ===== */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fffbe6;
    color: #111;
    line-height: 1.6;
}

header {
    background: #f2f2f2;
    text-align: center;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 320px;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    padding-bottom: 90px;
}

h1,
h2,
h3 {
    color: #000;
}

/* ===== Buttons ===== */

.cta {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 14px 20px;
    margin: 8px 5px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cta:hover {
    background: #e6b800;
}

/* ===== Cards ===== */

.card,
.box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.section {
    margin-bottom: 20px;
}

.instructor {
    background: #fff;
    border-left: 5px solid #ffcc00;
    padding: 15px;
    margin-bottom: 15px;
}

/* ===== Lists ===== */

ul {
    padding-left: 20px;
}

/* ===== Mobile Bottom Bar ===== */

.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
}

.mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    text-decoration: none;
}

.call {
    background: #000;
    color: #fff;
}

.whatsapp {
    background: #25D366;
    color: #fff;
}

/* ===== Responsive ===== */

@media (min-width: 768px) {
    .mobile-bar {
        display: none;
    }
}