/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9fb;
    color: #333;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #2a7f4f;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.login-btn {
    padding: 8px 16px;
    background: #2a7f4f;
    color: white;
    border-radius: 6px;
}

/* HERO SECTION */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        135deg,
        #2a7f4f 0%,
        #3fa56a 40%,
        #4ecb7f 100%
    );

    color: white;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #2a7f4f;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.25s ease;
}

.cta-btn:hover {
    background: #e8f5ec;
    transform: translateY(-3px);
}

/* APP GRID */
.apps-section {
    padding: 60px 20px;
    text-align: center;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.app-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.learn-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #2a7f4f;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.coming-soon {
    opacity: 0.7;
}

.badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #999;
    color: white;
    border-radius: 6px;
}

/* ABOUT */
.about-section {
    padding: 60px 20px;
    background: #eef3f0;
    text-align: center;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    margin: 8px 0;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #2a7f4f;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-top: 1px solid #ddd;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}
