
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #e6f9d5 0%, #f7f9f5 100%);
    color: #2d3a22;
    min-height: 100vh;
}

header {
    background: rgba(78, 124, 58, 0.97);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}
.logo-header {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.2s;
}
.logo-header:hover {
    transform: rotate(-8deg) scale(1.08);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.13rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #b6e388;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -3px;
}
nav a:hover {
    color: #b6e388;
}
nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(120deg, #b6e388 0%, #e6f9d5 100%);
    padding: 3.5rem 2rem 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-logo-wrap {
    margin-bottom: 1.2rem;
    animation: popIn 1.2s cubic-bezier(.23,1.02,.53,.97);
}
.logo-hero {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 24px rgba(78,124,58,0.13);
    border: 4px solid #b6e388;
    animation: logoSpin 2.5s cubic-bezier(.23,1.02,.53,.97) 0.2s;
}
@keyframes logoSpin {
    0% { transform: scale(0.7) rotate(-30deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); }
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}
.hero-text h1 {
    font-size: 2.7rem;
    margin-bottom: 0.5rem;
    color: #2d3a22;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px #e6f9d5;
}
.hero-text p {
    font-size: 1.35rem;
    color: #3e4d2c;
    margin-bottom: 0;
    font-weight: 500;
}

section {
    max-width: 950px;
    margin: 2.2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(78,124,58,0.06);
    padding: 2.2rem 2rem;
    transition: box-shadow 0.2s;
}
section:hover {
    box-shadow: 0 4px 32px rgba(78,124,58,0.10);
}
section h2 {
    color: #4e7c3a;
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
#services ul {
    columns: 2;
    margin: 0 0 1rem 0;
    padding: 0 1rem;
}
#services li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
.gallery img {
    width: 200px;
    height: 135px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(78,124,58,0.10);
    transition: transform 0.22s, box-shadow 0.22s;
    background: #f7f9f5;
}
.gallery img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(78,124,58,0.18);
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.contact-list li {
    margin-bottom: 0.5rem;
    font-size: 1.13rem;
}
footer {
    background: #4e7c3a;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2.5rem;
    border-radius: 0 0 18px 18px;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    box-shadow: 0 -2px 12px rgba(78,124,58,0.07);
}

@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    section {
        padding: 1.2rem 0.5rem;
    }
    .gallery img {
        width: 120px;
        height: 80px;
    }
}
@media (max-width: 700px) {
    .header-content, section {
        flex-direction: column;
        padding: 1rem;
    }
    .gallery img {
        width: 90px;
        height: 60px;
    }
    #services ul {
        columns: 1;
    }
    .logo-hero {
        width: 160px;
        height: 160px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
}
