* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2c5530;
}

.nav-cta {
    background: #2c5530;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #1e3d22 !important;
}

.hero {
    background: linear-gradient(135deg, #f0f4f0 0%, #e8efe8 100%);
    padding: 80px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2c5530;
    color: #fff;
}

.btn-primary:hover {
    background: #1e3d22;
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.education-block {
    background: #fff;
}

.edu-item {
    margin-bottom: 40px;
}

.edu-item:last-child {
    margin-bottom: 0;
}

.edu-item h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.edu-item p {
    color: #555;
    font-size: 1.05rem;
}

.course-content {
    background: #f5f8f5;
}

.course-list {
    list-style: none;
}

.course-list li {
    background: #fff;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
}

.course-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.course-list li p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.for-whom {
    background: #fff;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.column ul {
    list-style: none;
}

.column ul li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}

.column ul li:last-child {
    border-bottom: none;
}

.column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.steps {
    background: #f5f8f5;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2c5530;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.faq {
    background: #fff;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, #2c5530 0%, #3d7344 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: #2c5530;
}

.cta-section .btn-primary:hover {
    background: #f0f4f0;
}

footer {
    background: #1a1a1a;
    color: #999;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand p:first-child {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.btn-cookie {
    background: #2c5530;
    color: #fff;
    padding: 10px 24px;
    white-space: nowrap;
}

.btn-cookie:hover {
    background: #3d7344;
}

.legal-content {
    background: #fff;
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 24px;
    text-align: left;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
    text-align: left;
}

.legal-content p {
    color: #555;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 8px;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
}
