* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', Geneva, sans-serif;
    color: #333;
    line-height: 1.6;
}

.central {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 26px;
}

/* Topbar */
.topbar {
    background: #16a085;
    padding: 1.35rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.topbar .central {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 2.45rem;
    color: white;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.menu-items {
    display: flex;
    gap: 2.3rem;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: opacity 0.3s;
}

.menu-items a:hover {
    opacity: 0.75;
}

/* Hero */
.hero-block {
    background: linear-gradient(to bottom right, #16a085, #1abc9c);
    padding: 158px 26px;
    text-align: center;
    color: white;
}

.hero-text-content h2 {
    font-size: 3.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 1.38rem;
    margin-bottom: 2.4rem;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: #16a085;
    padding: 16px 44px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #f9f9f9;
    box-shadow: 0 7px 22px rgba(0,0,0,0.2);
}

/* Main Content */
.main-content {
    padding: 87px 26px;
    background: #ecf0f1;
}

.content-title {
    text-align: center;
    font-size: 3rem;
    color: #16a085;
    margin-bottom: 3.6rem;
    font-weight: 700;
}

.flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(348px, 1fr));
    gap: 2.5rem;
}

.food-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.11);
    transition: all 0.3s;
}

.food-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

.food-card img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    display: block;
}

.food-info {
    padding: 1.85rem;
}

.food-info h3 {
    font-size: 1.52rem;
    color: #333;
    margin-bottom: 0.95rem;
}

.food-info p {
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.stats {
    display: flex;
    gap: 1.55rem;
    color: #16a085;
    font-weight: 700;
}

/* Footer */
.footer-zone {
    background: #138d75;
    color: white;
    padding: 3.6rem 26px 1.6rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 3.4rem;
    margin-bottom: 2.6rem;
}

.footer-sections h3, .footer-sections h4 {
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-sections ul {
    list-style: none;
}

.footer-sections ul li {
    margin-bottom: 0.75rem;
}

.footer-sections a {
    color: rgba(255,255,255,0.87);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-sections a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2.15rem;
    border-top: 1px solid rgba(255,255,255,0.23);
}

/* Responsive */
@media (max-width: 768px) {
    .topbar .central {
        flex-direction: column;
        gap: 1.15rem;
    }
    
    .menu-items {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
    }
    
    .hero-text-content h2 {
        font-size: 2.25rem;
    }
    
    .flex-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
    }
}

