* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background:#ffffff;
    color:#333;
}

.container {
    width:90%;
    max-width:1200px;
    margin:auto;
}

.center {
    text-align:center;
}

/* HEADER */
.header {
    padding:30px 0;
    border-bottom:4px solid #1fbf75;
    background:#fff;
}

.logo {
    height:90px;
    display:block;
    margin:0 auto 15px auto;
}

.slogan {
    color:#1fbf75;
    font-weight:500;
}

/* HERO */
.hero {
    height:450px;
    background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-text h2 {
    font-size:38px;
    margin-bottom:15px;
}

.hero-text p {
    font-size:20px;
}

/* ABOUT */
.about {
    padding:60px 0;
}

.about h2 {
    color:#1fbf75;
    margin-bottom:20px;
}

/* ADVANTAGES */
.advantages {
    background:#f8f8f8;
    padding:60px 0;
}

.advantages h2 {
    text-align:center;
    margin-bottom:40px;
    color:#1fbf75;
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card {
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    border-left:5px solid #1fbf75;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-5px);
}

/* SCHEDULE */
.schedule {
    padding:60px 0;
}

.schedule h2 {
    color:#1fbf75;
    margin-bottom:20px;
}

table {
    width:100%;
    border-collapse:collapse;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

th {
    background:#1fbf75;
    color:#fff;
    padding:12px;
}

td {
    padding:12px;
    border-bottom:1px solid #eee;
}

tr:hover {
    background:#f1f1f1;
}

.closed {
    color:red;
    font-weight:bold;
}

/* FOOTER */
.footer {
    background:#1fbf75;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

.footer h3 {
    margin-bottom:15px;
}

/* MOBILE */
@media(max-width:768px){
    .hero-text h2 {
        font-size:26px;
    }
    .hero-text p {
        font-size:16px;
    }
}