body {
    padding-top: 0 !important; /* Remove sticky nav compensation */
    scroll-behavior: smooth;
    font-size: 1.25rem; /* Base font size increased */
    line-height: 1.8; /* Better readability */
}

p, li {
            font-size: 1.25rem; /* All paragraphs and list items */
        }
        
.lead {
        font-size: 1.5rem; /* Larger lead paragraphs */
        }
    
    .navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05); /* subtle hover effect */
}

/* Ensure logo doesn't get too big on mobile */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px !important;
    }
}

/* Initial navbar styling */
    #navbar {
        transition: all 0.3s ease;
        padding: 1rem 0;
    }
    
    /* Scrolled state styling */
    #navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-logo {
        transition: all 0.3s ease;
    }
    
    #navbar.scrolled .navbar-logo {
        height: 30px !important;
    }
    
    .nav-cta {
        transition: all 0.3s ease;
    }
    
    #navbar.scrolled .nav-cta {
        padding: 10px 20px !important;
        font-size: 1.2rem !important;
    }
    
    /* Adjust body padding to account for fixed navbar */
   
    
    #navbar.scrolled + * {
        padding-top: 60px;
    }
    
    /* Optional additional styling */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .navbar-nav {
        /* Fine-tune centering if needed */
        position: relative;
        left: -50px; /* Adjust this value as needed */
    }
}

    /* Extra Large CTA Buttons */
        .btn-xl {
            font-size: 1.5rem;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            margin: 10px;
        }
        
        .cta-section {
        background: linear-gradient(135deg, #6c63ff 0%, #3a2fbf 100%);
    }
    .btn-xl {
        font-size: 1.25rem;
        padding: 12px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    .btn-light:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .cta-image-wrapper {
        transition: transform 0.5s ease;
    }
    .cta-image-wrapper:hover {
        transform: rotate(-2deg) scale(1.02);
    }
        /* Hero section button adjustments */
        .hero-section .btn {
            min-width: 250px;
        }

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1194&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.section {
    padding: 80px 0;
}

/* For the new section */
#intro img {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#intro img:hover {
    transform: scale(1.02);
}

#intro .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* How It Works Section Styles */
.process-steps {
    position: relative;
}

.step-card {
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #6c63ff;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.step-number {
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
}

.example-card {
    border-left: 4px solid #ffc107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-card {
        margin-bottom: 20px;
    }
}

/* Benefits Section Styles */
.benefit-card {
    background: white;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    border-top: 3px solid #6c63ff;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #6c63ff !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-card {
        margin-bottom: 15px;
    }
}

/* Personal Benefits Styles */
.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(108, 99, 255, 0.3);
}

.example-box {
    border-left: 3px solid #6c63ff;
}

.phase-card {
    background: rgba(108, 99, 255, 0.03);
    transition: all 0.2s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.phase-card:hover {
    background: rgba(108, 99, 255, 0.08);
    transform: translateX(5px);
}

.phase-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Image cover for lunar phases */
.object-fit-cover {
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Big CTA Section Styles */
#big-cta {
    background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
}

.product-image-wrapper {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

#big-cta .btn-primary {
    background: #6c63ff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#big-cta .btn-primary:hover {
    background: #5a52d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

#big-cta .fa-li {
    left: -2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #big-cta .display-5 {
        font-size: 2.5rem;
    }
    
    #big-cta .display-4 {
        font-size: 3rem;
    }
}
/* Purchase Process Section Styles */
#purchase-process .card {
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

#purchase-process .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-top: 3px solid #6c63ff;
}

.security-badges img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.security-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #purchase-process .fs-4 {
        font-size: 1.25rem !important;
    }
    
    .security-badges {
        justify-content: center;
    }
}

/* Why Moon Reading Matters Section */
#moon-reading-2025 {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.quote-card {
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.15);
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.benefits-list .fa-heart-circle-check,
.benefits-list .fa-bullseye,
.benefits-list .fa-moon-stars {
    transition: all 0.3s ease;
}

.benefits-list div:hover i {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #moon-reading-2025 .display-5,
    #moon-reading-2025 .display-6 {
        font-size: 2.5rem;
    }
}

/* FAQ Section Styles */
#faq .accordion-button {
    font-weight: 600;
    background-color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #6c63ff;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 99, 255, 0.3);
}

#faq .accordion-body {
    border-left: 3px solid #6c63ff;
    margin-left: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #faq .accordion-body {
        margin-left: 1rem;
    }
    
    #faq .accordion-button i {
        margin-right: 0.5rem;
    }
}

.testimonial-card {
    border-left: 4px solid #6c63ff;
    padding-left: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 2rem;
    color: #6c63ff;
    margin-bottom: 15px;
}

.nav-link.active {
    color: #6c63ff !important;
    font-weight: bold;
}

.guarantee-badge {
    background-color: #6c63ff;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

/* Testimonials Section */
.stars-large {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.stars-small {
    font-size: 1rem;
    letter-spacing: 1px;
}

.testimonial-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: rgba(108, 99, 255, 0.3);
}

.user-image img {
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .user-image img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quote-icon {
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .stars-large {
        font-size: 1.25rem;
    }
}