/* Section Spacing Standardization */

/* Set uniform padding for all sections */
section,
.app-screens-showcase,
.app-showcase-section,
.download-section,
.tracking-section {
    padding: 100px 0;
}

/* Special padding for hero section */
.hero-section {
    padding: 120px 0 50px;
}

/* Special padding for features section */
.features-section {
    padding: 80px 0 100px;
}

/* Adjust spacing between sections */
section + section,
.hero-section + section,
section + .download-banner-wrapper,
.download-banner-wrapper + footer {
    margin-top: 0;
}

/* Specific adjustments for the download banner */
.download-banner-wrapper {
    margin: 0;
    padding: 0;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    section,
    .app-screens-showcase,
    .app-showcase-section,
    .download-section,
    .tracking-section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 100px 0 40px;
    }

    .features-section {
        padding: 60px 0 80px;
    }

    footer {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    section,
    .app-screens-showcase,
    .app-showcase-section,
    .download-section,
    .tracking-section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 90px 0 30px;
    }

    .features-section {
        padding: 50px 0 60px;
    }

    footer {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    section,
    .app-screens-showcase,
    .app-showcase-section,
    .download-section,
    .tracking-section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 80px 0 25px;
    }

    .features-section {
        padding: 40px 0 50px;
    }

    footer {
        padding-top: 50px;
    }
}
