﻿.hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: #009639 !important;
}
.hero-section {
    background: linear-gradient(135deg, #f4faf6, #ffffff);
    border-radius: 24px;
    margin-bottom: 2rem;
}

.hero-card,
.home-feature-card,
.impact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.home-feature-card,
.impact-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .home-feature-card:hover,
    .impact-card:hover {
        transform: translateY(-4px);
        transition: 0.25s ease;
    }

    .impact-card h3 {
        font-size: 42px;
    }

.btn-success {
    background-color: #009639;
    border-color: #009639;
}

.btn-outline-success {
    color: #009639;
    border-color: #009639;
}

    .btn-outline-success:hover {
        background-color: #009639;
        border-color: #009639;
    }

.app-download-section {
    margin-top: 1.75rem;
}

.app-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 170px;
    min-height: 62px;
    padding: 0.65rem 1rem;
    border: 1px solid #2d2926;
    border-radius: 10px;
    background-color: #2d2926;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.app-download-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 41, 38, 0.2);
}

.app-download-button i {
    flex-shrink: 0;
    font-size: 1.8rem;
}

.app-download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

    .app-download-text small {
        margin-bottom: 0.2rem;
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 0.05rem;
    }

    .app-download-text strong {
        font-size: 1rem;
        font-weight: 600;
    }

.app-gallery-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background-color: #ef3340;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.app-download-button-disabled {
    border-color: #dee2e6;
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.8;
}

    .app-download-button-disabled .app-gallery-icon {
        background-color: #adb5bd;
    }

@media (max-width: 576px) {
    .app-download-button {
        width: 100%;
        max-width: 260px;
    }
}