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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #217346;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #25D366;
    color: #fff;
}

.btn-primary:hover {
    background: #1da851;
}

.btn-nav {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #1da851;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: #1a5632;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
}

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #f9fafb;
}

.section h2 {
    font-size: 1.9rem;
    color: #1a5632;
    margin-bottom: 30px;
    text-align: center;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #444;
}

.skills-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 30px;
}

.skills-list li {
    padding: 15px 20px;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 1.05rem;
    position: relative;
    padding-left: 45px;
}

.skills-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    color: #25D366;
    font-weight: bold;
}

.history-note {
    text-align: center;
    font-style: italic;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #1a5632;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
}

.cta-section {
    background: linear-gradient(135deg, #217346 0%, #1a5632 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}

.footer-brand {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-email {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner button {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-banner button:hover {
    background: #1da851;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
