:root {
    --primary-green: #2E8B57;
    --light-green: #3CB371;
    --dark-green: #006400;
    --soft-white: #F5F5F0;
    --dark-text: #333333;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-text);
    background-color: var(--soft-white);
    line-height: 1.6;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    height: 100vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image.loaded {
    opacity: 1;
}

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

header {
    background-color: var(--soft-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
    white-space: pre; /* Preserves the extra spaces */
}

.language-switcher {
    display: flex;
}

.language-switcher button {
    background: none;
    border: none;
    color: var(--dark-text);
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.language-switcher button:hover {
    background-color: rgba(46, 139, 87, 0.1);
}

.language-switcher button.active {
    color: var(--primary-green);
    font-weight: bold;
    border-bottom: 2px solid var(--primary-green);
    background-color: rgba(46, 139, 87, 0.1);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.cta-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 10px;
}

.cta-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-green);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background-color: var(--soft-white);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-green);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.waitlist-form {
    background-color: var(--soft-white);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-text);
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

footer {
    background-color: var(--dark-green);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    .hero {
        height: 80vh;
        max-height: none;
    }
    .feature-card {
        width: 100%;
        padding: 20px;
    }
}