/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #42b72a;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #fff;
    gap: 3rem;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: #1c1e21;
    line-height: 1.2;
    margin-top: 0;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    background-color: #42b72a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #389e23;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1c1e21;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    text-align: center;
    max-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    flex: 1 1 250px;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: #1c1e21;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

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

    .features h2 {
        font-size: 1.8rem;
    }

    nav ul {
        display: none;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }
}
