/* GLOBAL STYLING */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #000000;
}

/* ⭐ LANGUAGE BAR */
.translate-bar {
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
    padding: 6px 20px;
    text-align: right;
}
.goog-te-gadget {
    font-size: 14px !important;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    background: #000000;
    color: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

/* HERO */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 50px;
}
.hero-box {
    max-width: 650px;
    color: white;
}
.hero-box h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}
.btn-red {
    background: red;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 12px;
}
.btn-outline {
    border: 2px solid white;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* ABOUT */
.about {
    padding: 60px 8%;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.about-img {
    width: 100%;
    border-radius: 5px;
}
.title-red {
    color: #c40000;
    font-size: 32px;
    font-weight: 800;
}

/* PROGRAMS */
.programs {
    padding: 60px 8%;
}
.center-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

/* CTA */
.cta {
    padding: 70px 8%;
    text-align: center;
    background: #111;
    color: white;
}

/* FOOTER */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}
