/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hero content layout */
.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.logo {
    max-height: 150px;
    height: auto;
    width: auto;
    max-width: 200px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #7ba05b 0%, #5a7c42 100%);
    color: white;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.status {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status p {
    font-size: 1.1rem;
    margin: 0;
}

/* About section */
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #4a6741;
    font-weight: 300;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.coming-soon {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #7ba05b;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4a6741;
    font-weight: 400;
}

.coming-soon p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.coming-soon ul {
    list-style: none;
    padding-left: 0;
}

.coming-soon li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: #555;
}

.coming-soon li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7ba05b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #4a6741;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .logo {
        max-height: 120px;
        max-width: 180px;
    }

    .container {
        padding: 0 15px;
    }

    .coming-soon {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .about {
        padding: 2.5rem 0;
    }
}