* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    color: #232323;
    line-height: 1.74;
}

.page-width {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 38px;
}

/* Header */
.site-header {
    background: #27ae60;
    padding: 1.62rem 0;
}

.site-header .page-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box h1 {
    font-size: 2.92rem;
    color: white;
    font-weight: 900;
    letter-spacing: 4px;
}

.site-menu {
    display: flex;
    gap: 2.82rem;
}

.site-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.site-menu a:hover {
    color: #aed581;
}

/* Splash */
.splash-screen {
    background: linear-gradient(135deg, #27ae60, #229954);
    padding: 188px 38px;
    text-align: center;
    color: white;
}

.splash-content h2 {
    font-size: 4.18rem;
    margin-bottom: 1.62rem;
    font-weight: 900;
}

.splash-content p {
    font-size: 1.68rem;
    margin-bottom: 2.92rem;
}

.splash-button {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 22px 64px;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1.26rem;
    transition: all 0.3s;
}

.splash-button:hover {
    background: #fefffe;
    transform: scale(1.04);
    box-shadow: 0 15px 38px rgba(0,0,0,0.28);
}

/* Showcase */
.showcase-area {
    padding: 104px 38px;
    background: #e8f6f3;
}

.area-headline {
    text-align: center;
    font-size: 3.68rem;
    color: #27ae60;
    margin-bottom: 4.5rem;
    font-weight: 900;
}

.showcase-flex {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(382px, 1fr));
    gap: 3.18rem;
}

.showcase-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: scale(1.04);
    box-shadow: 0 21px 52px rgba(0,0,0,0.24);
}

.card-image {
    height: 268px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 2.32rem;
}

.card-info h3 {
    font-size: 1.84rem;
    color: #232323;
    margin-bottom: 1.28rem;
    font-weight: 900;
}

.card-info p {
    color: #666;
    margin-bottom: 1.6rem;
    line-height: 1.84;
}

.card-meta {
    display: flex;
    gap: 1.96rem;
    color: #27ae60;
    font-weight: 900;
}

/* Footer */
.bottom-footer {
    background: #1e8449;
    color: white;
    padding: 4.18rem 38px 2.18rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3.1fr 1fr;
    gap: 4.18rem;
    margin-bottom: 3.18rem;
}

.footer-grid h3, .footer-grid h4 {
    margin-bottom: 1.62rem;
    font-weight: 900;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 1.08rem;
}

.footer-grid a {
    color: rgba(255,255,255,0.97);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 2.54rem;
    border-top: 1px solid rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .page-width {
        flex-direction: column;
        gap: 1.54rem;
    }
    
    .site-menu {
        flex-direction: column;
        gap: 1.28rem;
        text-align: center;
    }
    
    .splash-content h2 {
        font-size: 2.72rem;
    }
    
    .showcase-flex {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

