/* Add 100px padding-top to specific pages except landing page */

/* Target specific pages with 100px padding-top */
.page-faq section.pt-12,
.page-privacy section.pt-12,
.page-terms section.pt-12,
.page-refund section.pt-12,
.page-contact section.pt-12,
.page-about section.pt-12,
.page-custom section.pt-12 {
    padding-top: 100px !important;
}

/* Special handling for contact page which already has pt-24 */
.page-contact section.pt-24 {
    padding-top: 100px !important;
}

/* Landing page keeps original padding */
.landing-page section.pt-12 {
    padding-top: 3rem !important; /* Original pt-12 value */
}

/* Fallback for any other pages that might have pt-12 */
section.pt-12 {
    padding-top: 100px !important;
}

/* Ensure landing page override takes precedence */
.landing-page section.pt-12 {
    padding-top: 3rem !important;
}

/* Landing page hero section text padding for mobile devices */
@media (max-width: 479px) {
    .landing-page .hero-section .section-subtitle {
        padding-top: 100px !important;
    }
}
