body {
    scroll-behavior: smooth;
    padding-top: 50px;
    background-color: #fff;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
}

.hero {
    height: 100vh;
    /* gradient stays in the app's dark-to-mid green range */
    background: linear-gradient(135deg, #27500A 0%, #3B6D11 66%, #639922 100%);
    color: #F7FAF5;
    display: flex;
    align-items: center;
}
.feature-card {
    background-color: #F7FAF5;
    border: 1px solid #F7FAF5;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem;
}
 
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(59, 109, 17, 0.12);
}

#footer-text {
    color:#F7FAF5;
}

#video-section {
    padding-bottom: 30px;
    padding-top:30px;
    background-color: #F7FAF5;
}

.team-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(59, 109, 17, 0.15);
}

.team-section .row {
    margin-bottom: 60px;
}

.btn-custom {
    background-color: #3B6D11;
    color: #F7FAF5;
    border: 1px solid #F7FAF5;
    border-radius: 10px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.18s ease, transform 0.15s ease;
}
 
.btn-custom:hover {
    background-color: #27500A;
    color: #F7FAF5;
    transform: translateY(-2px);
}

.team-copy {
    max-width: 420px;
}

.howto-section {
    background: linear-gradient(180deg, #F7FAF5 0%, #fff 100%);
}

.section-label {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: #EAF3DE;
    color: #27500A;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid #C0DD97;
}

.section-title {
    font-weight: 700;
    color: #1a1a1a;
}

.section-subtitle {
    max-width: 720px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.65;
}

.info-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #EAF3DE;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(59, 109, 17, 0.12);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3B6D11;
    color: #EAF3DE;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border: 2px solid #27500A;
}
 
.info-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.info-card p,
.info-card li {
    color: #444;
    line-height: 1.7;
}

.feature-list {
    padding-left: 1.2rem;
    margin: 0.75rem 0 1rem;
}
 
.feature-list li {
    margin-bottom: 0.5rem;
    color: #444;
}

.screenshot-img {
    max-height: 700px;
    width: auto;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 109, 17, 0.15);
}

.nav-link:hover {
    color: #F7FAF5;
}

.nav-logo {
    height: 70px;
    width: auto;
}