* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #fefaf5;
    color: #2e2b28;
    line-height: 1.5;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
header {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img {
    height: 60px;
    width: auto;
}
.logo-text h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1f6e43, #bc7a2e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}
.logo-text p {
    font-size: 14px;
    color: #5c6b5c;
    margin-top: 5px;
}
nav a {
    margin-left: 28px;
    text-decoration: none;
    font-weight: 500;
    color: #2c4b32;
    transition: 0.2s;
}
nav a:hover {
    color: #bc7a2e;
}
.hero {
    background: linear-gradient(105deg, #eef2e4 0%, #e2e8d5 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #d8e0ce;
}
.hero h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f6e43;
    margin-bottom: 20px;
}
.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #3c543c;
}
.btn {
    display: inline-block;
    background-color: #bc7a2e;
    color: white;
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 32px;
    transition: 0.2s;
}
.btn:hover {
    background-color: #9b5f23;
    transform: scale(1.02);
}
.section {
    padding: 70px 0;
    border-bottom: 1px solid #ece4d8;
}
.section-title {
    font-size: 34px;
    text-align: center;
    color: #1f6e43;
    margin-bottom: 48px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #bc7a2e;
    margin: 14px auto 0;
    border-radius: 2px;
}
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.card {
    background: white;
    padding: 28px 24px;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.04);
    flex: 1 1 280px;
    text-align: center;
    border: 1px solid #ede5d9;
}
.card h3 {
    font-size: 24px;
    margin: 20px 0 12px;
    color: #bc7a2e;
}
.list-styled {
    list-style: none;
    margin-top: 20px;
}
.list-styled li {
    margin: 12px 0;
    padding-left: 24px;
    position: relative;
}
.list-styled li::before {
    content: "✦";
    color: #bc7a2e;
    position: absolute;
    left: 0;
}
.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.two-columns > div {
    flex: 1;
    min-width: 260px;
}
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}
.partner-item {
    background: #fff;
    padding: 12px 24px;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    font-weight: 500;
    color: #2c4b32;
}
.contacts-block {
    background: #eef2e4;
    border-radius: 40px;
    padding: 40px 32px;
    text-align: center;
}
.contacts-block p {
    margin: 16px 0;
    font-size: 18px;
}
.contacts-block a {
    color: #1f6e43;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #bc7a2e;
}
.docs-list {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.docs-list a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #1f6e43;
    text-decoration: none;
    border-bottom: 1px solid #ece4d8;
}
.docs-list a:hover {
    color: #bc7a2e;
    padding-left: 10px;
    transition: 0.2s;
}
footer {
    background: #1f2e24;
    color: #cddbc5;
    text-align: center;
    padding: 36px 0;
    font-size: 14px;
}
@media (max-width: 780px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    nav a {
        margin: 0 12px;
    }
    .hero h2 {
        font-size: 32px;
    }
    .section-title {
        font-size: 28px;
    }
    .logo {
        justify-content: center;
    }
}
