* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    color: #2a2a2a;
    line-height: 1.68;
}

.inner-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Header */
.header-section {
    background: #2980b9;
    padding: 1.45rem 0;
}

.header-section .inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title h1 {
    font-size: 2.65rem;
    color: white;
    font-weight: 900;
}

.primary-nav {
    display: flex;
    gap: 2.55rem;
}

.primary-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.primary-nav a:hover {
    color: #85c1e9;
}

/* Hero */
.hero-main {
    background: linear-gradient(135deg, #2980b9, #3498db);
    padding: 167px 34px;
    text-align: center;
    color: white;
}

.hero-wrapper h2 {
    font-size: 3.85rem;
    margin-bottom: 1.42rem;
    font-weight: 900;
}

.hero-wrapper p {
    font-size: 1.46rem;
    margin-bottom: 2.62rem;
}

.primary-cta {
    display: inline-block;
    background: white;
    color: #2980b9;
    padding: 19px 54px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 900;
    font-size: 1.14rem;
    transition: all 0.3s;
}

.primary-cta:hover {
    background: #fafafa;
    transform: translateY(-4px);
    box-shadow: 0 11px 28px rgba(0,0,0,0.22);
}

/* Recipe Section */
.recipe-section {
    padding: 93px 34px;
    background: #ebf5fb;
}

.section-heading {
    text-align: center;
    font-size: 3.35rem;
    color: #2980b9;
    margin-bottom: 4rem;
    font-weight: 900;
}

.recipe-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(362px, 1fr));
    gap: 2.85rem;
}

.recipe-unit {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 7px 26px rgba(0,0,0,0.13);
    transition: all 0.3s;
}

.recipe-unit:hover {
    transform: translateY(-9px);
    box-shadow: 0 16px 42px rgba(0,0,0,0.19);
}

.recipe-img {
    height: 248px;
    background-size: cover;
    background-position: center;
}

.recipe-data {
    padding: 2.05rem;
}

.recipe-data h3 {
    font-size: 1.62rem;
    color: #2a2a2a;
    margin-bottom: 1.08rem;
    font-weight: 900;
}

.recipe-data p {
    color: #666;
    margin-bottom: 1.38rem;
    line-height: 1.72;
}

.recipe-stats {
    display: flex;
    gap: 1.72rem;
    color: #2980b9;
    font-weight: 900;
}

/* Footer */
.site-footer {
    background: #21618c;
    color: white;
    padding: 3.85rem 34px 1.85rem;
}

.footer-row {
    display: grid;
    grid-template-columns: 2.6fr 1fr;
    gap: 3.85rem;
    margin-bottom: 2.85rem;
}

.footer-row h3, .footer-row h4 {
    margin-bottom: 1.42rem;
    font-weight: 900;
}

.footer-row ul {
    list-style: none;
}

.footer-row ul li {
    margin-bottom: 0.88rem;
}

.footer-row a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-row a:hover {
    color: white;
}

.footer-base {
    text-align: center;
    padding-top: 2.32rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header-section .inner-wrapper {
        flex-direction: column;
        gap: 1.32rem;
    }
    
    .primary-nav {
        flex-direction: column;
        gap: 1.08rem;
        text-align: center;
    }
    
    .hero-wrapper h2 {
        font-size: 2.45rem;
    }
    
    .recipe-container {
        grid-template-columns: 1fr;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
    }
}

