body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #222;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
}
.logo {
    height: 48px;
}
nav a {
    margin-left: 2rem;
    color: #5cb712;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #388e09;
}
.hero {
    background: linear-gradient(90deg, #e8f5e9 0%, #fff 100%);
    text-align: center;
    padding: 4rem 2rem 3rem 2rem;
}
.hero h1 {
    color: #5cb712;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.cta {
    background: #5cb712;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(92,183,18,0.08);
    transition: background 0.2s;
}
.cta:hover {
    background: #388e09;
}
.values {
    background: #fff;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}
.values h2 {
    color: #5cb712;
    margin-bottom: 1rem;
}
.values ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.values li {
    background: #e8f5e9;
    color: #222;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    min-width: 200px;
    text-align: center;
}
.how-it-works {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}
.how-it-works h2 {
    color: #5cb712;
    margin-bottom: 1.5rem;
}
.steps {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}
.step {
    text-align: center;
}
.step span {
    display: inline-block;
    background: #5cb712;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    line-height: 48px;
    margin-bottom: 0.5rem;
}
.faq {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}
.faq h2 {
    color: #5cb712;
    margin-bottom: 1rem;
}
.faq details {
    margin-bottom: 1rem;
}
.faq summary {
    font-weight: bold;
    cursor: pointer;
}
.register-form {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}
.register-form h2 {
    color: #5cb712;
    margin-bottom: 1rem;
}
.register-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.register-form label {
    font-weight: 500;
}
.register-form input, .register-form textarea {
    padding: 0.75rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
}
.register-form button {
    background: #5cb712;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.register-form button:hover {
    background: #388e09;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 2rem;
    border-radius: 12px 12px 0 0;
}
.footer-links a {
    color: #5cb712;
    margin: 0 0.5rem;
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover {
    text-decoration: underline;
}
@media (max-width: 700px) {
    .values ul, .steps {
        flex-direction: column;
        gap: 1rem;
    }
    header {
        flex-direction: column;
        gap: 1rem;
    }
}
.hero-img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.section-img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 2rem auto 1rem auto;
    border-radius: 12px;
    object-fit: cover;
}
.cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #222;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    padding: 1.5rem 2rem;
    z-index: 1000;
    text-align: center;
    font-size: 1rem;
    border-top: 2px solid #5cb712;
}
.cookie-banner button {
    background: #5cb712;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-banner button:hover {
    background: #388e09;
}
.prereg-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    max-width: 400px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.prereg-form h3 {
    color: #5cb712;
    margin-bottom: 0.5rem;
    text-align: center;
}
.prereg-form p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}
.prereg-form input {
    padding: 0.75rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.prereg-form button {
    background: #5cb712;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.prereg-form button:hover {
    background: #388e09;
}
@media (max-width: 700px) {
    .prereg-form {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
}
.lang-switch.center {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.lang-switch button {
    background: #e8f5e9;
    color: #5cb712;
    border: 2px solid #5cb712;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: background 0.2s, color 0.2s;
}
.lang-switch button:hover, .lang-switch button.active {
    background: #5cb712;
    color: #fff;
}
.thank-you-message {
    display: none;
    text-align: center;
    border: 2px solid #5cb712;
    background: #e8f5e9;
    color: #222;
    font-weight: bold;
    text-decoration: underline;
    border-radius: 12px;
    padding: 2rem 1rem;
    margin: 2rem auto;
    max-width: 400px;
    font-size: 1.2rem;
} 