* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    color: #2b2b2b;
    line-height: 1.7;
}

.main-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 36px;
}

/* Header */
.top-header {
    background: #1abc9c;
    padding: 1.55rem 0;
}

.top-header .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 2.82rem;
    color: white;
    font-weight: 900;
}

.header-menu {
    display: flex;
    gap: 2.72rem;
}

.header-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.header-menu a:hover {
    color: #a8e6cf;
}

/* Hero */
.hero-wrapper {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    padding: 180px 36px;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 4.05rem;
    margin-bottom: 1.55rem;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2.82rem;
}

.hero-link {
    display: inline-block;
    background: white;
    color: #1abc9c;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.22rem;
    transition: all 0.3s;
}

.hero-link:hover {
    background: #f7fffe;
    box-shadow: 0 13px 34px rgba(0,0,0,0.26);
}

/* Recipe Wrapper */
.recipe-wrapper {
    padding: 100px 36px;
    background: #e8f8f5;
}

.wrapper-title {
    text-align: center;
    font-size: 3.55rem;
    color: #1abc9c;
    margin-bottom: 4.3rem;
    font-weight: 900;
}

.recipe-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(374px, 1fr));
    gap: 3.05rem;
}

.column-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0,0,0,0.16);
    transition: all 0.3s;
}

.column-item:hover {
    transform: scale(1.03);
    box-shadow: 0 19px 48px rgba(0,0,0,0.22);
}

.column-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.item-content {
    padding: 2.22rem;
}

.item-content h3 {
    font-size: 1.76rem;
    color: #2b2b2b;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.item-content p {
    color: #666;
    margin-bottom: 1.52rem;
    line-height: 1.8;
}

.content-badges {
    display: flex;
    gap: 1.88rem;
    color: #1abc9c;
    font-weight: 900;
}

/* Footer */
.page-footer {
    background: #16a085;
    color: white;
    padding: 4.05rem 36px 2.05rem;
}

.footer-blocks {
    display: grid;
    grid-template-columns: 2.9fr 1fr;
    gap: 4.05rem;
    margin-bottom: 3.05rem;
}

.footer-blocks h3, .footer-blocks h4 {
    margin-bottom: 1.55rem;
    font-weight: 900;
}

.footer-blocks ul {
    list-style: none;
}

.footer-blocks ul li {
    margin-bottom: 1rem;
}

.footer-blocks a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-blocks a:hover {
    color: white;
}

.footer-line {
    text-align: center;
    padding-top: 2.46rem;
    border-top: 1px solid rgba(255,255,255,0.36);
}

/* Responsive */
@media (max-width: 768px) {
    .top-header .main-container {
        flex-direction: column;
        gap: 1.46rem;
    }
    
    .header-menu {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.62rem;
    }
    
    .recipe-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-blocks {
        grid-template-columns: 1fr;
    }
}

