.landing-page-content .container {
    max-width: 1140px; /* Standard landing page container width */
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6e8efb, #a777e3); /* Keeping original gradient for visual flair */
    color: #fff; /* White text on gradient */
    text-align: center;
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* For potential pseudo-elements or overlays */
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.1);
}
.hero-section .container { position: relative; z-index: 1; }

.hero-section h1 {
    font-family: var(--font-family-headings); /* Use theme font */
    font-size: 3.2rem; /* Slightly adjusted */
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff; /* Override default h1 color */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3); /* Soft shadow for readability */
}
.hero-section .subtitle {
    font-family: var(--font-family-body); /* Use theme font */
    font-size: 1.4rem; /* Adjusted */
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255,255,255,0.9); /* Slightly transparent white */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button - Style distinctively but based on theme's button principles */
.cta-button {
    display: inline-block; /* Or inline-flex if icon is used */
    background-color: var(--accent-color); /* Use theme accent */
    color: #fff; /* Text color for accent button */
    padding: 16px 40px; /* Generous padding */
    font-family: var(--font-family-headings); /* Bold font for CTA */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-lg); /* Consistent radius */
    transition: transform var(--transition-speed) var(--transition-func), box-shadow var(--transition-speed) var(--transition-func), background-color var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-button:hover {
    background-color: var(--accent-color-dark); /* Darken accent on hover */
    color: #fff;
    transform: translateY(-3px) scale(1.02); /* More interactive hover */
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}
.hero-section p a { /* For "Sign In" link */
    color: #fff;
    font-weight: 500;
}
.hero-section p a:hover {
    color: var(--accent-color); /* Use accent for hover on links in hero */
}

/* General Section Styling */
.section {
    padding: 80px 20px;
    text-align: center;
}
.section-title {
    font-family: var(--font-family-headings); /* Use theme font */
    font-size: 2.5rem;
    font-weight: 700; /* Bolder section titles */
    margin-bottom: 60px; /* Increased margin */
    position: relative;
    color: var(--secondary-color); /* Use theme secondary color */
}
.section-title::after { /* Decorative underline */
    content: '';
    display: block;
    width: 80px; /* Wider underline */
    height: 4px;
    background-color: var(--primary-color); /* Use theme primary for underline */
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left; /* Align text left within feature items */
}
.feature-item {
    background: var(--card-bg-color); /* Use theme card background */
    padding: 35px 30px; /* Increased padding */
    border-radius: var(--border-radius-lg); /* Consistent radius */
    box-shadow: var(--shadow-md); /* Use theme shadow */
    transition: transform var(--transition-speed) var(--transition-func), box-shadow var(--transition-speed) var(--transition-func);
    border: 1px solid var(--border-color); /* Subtle border */
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg); /* Enhanced shadow on hover */
}
.feature-item .icon {
    font-size: 2.8rem; /* Slightly smaller, adjust as needed */
    color: var(--primary-color); /* Use theme primary for icons */
    margin-bottom: 25px;
    display: inline-block; /* To allow text flow */
}
/* Icon hover animation from original */
.feature-item .icon i { transition: transform 0.3s ease-in-out; }
.feature-item:hover .icon i { transform: scale(1.15) rotate(5deg); }

.feature-item h3 {
    font-family: var(--font-family-headings); /* Use theme font */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color); /* Theme color */
}
.feature-item p {
    color: var(--text-color-light); /* Theme color */
    line-height: 1.7; /* More readable line height */
    font-size: 0.95rem;
}

/* How It Works Section */
#how-it-works { background-color: var(--hover-bg-color); /* Slightly off-white */ }
.how-it-works-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}
.step {
    flex-basis: 30%;
    min-width: 280px; /* Increased min-width */
    padding: 30px;
    margin-bottom: 30px;
    text-align: center; /* Center content within step */
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
/* Optional: Add background/shadow to steps on hover or by default */
/* .step:hover { background: var(--card-bg-color); box-shadow: var(--shadow-md); } */

.step .step-number {
    font-family: var(--font-family-headings);
    font-size: 3.5rem; /* Larger step number */
    font-weight: 700;
    color: var(--primary-color); /* Theme color, or can use accent */
    opacity: 0.4; /* Make it a bit subtle */
    line-height: 1;
    margin-bottom: 10px;
}
.step .icon { /* Icon specific to how-it-works steps */
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.step h4 {
    font-family: var(--font-family-headings);
    font-size: 1.4rem; /* Adjusted */
    font-weight: 600;
    margin: 15px 0;
    color: var(--secondary-color);
}
.step p { color: var(--text-color-light); font-size: 0.95rem; }

/* Testimonial Section */
.testimonial-section { background-color: var(--bg-color); /* Matches main bg */ }
.testimonial-carousel-container {
    padding: 40px 0;
    position: relative;
}
.swiper-slide { /* From original, seems fine */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.testimonial-quote {
    width: 100%;
    max-width: 600px; /* Adjusted max-width */
    margin: 0 auto;
    background-color: var(--card-bg-color); /* Theme card background */
    border-radius: var(--border-radius-lg); /* Consistent radius */
    box-shadow: var(--shadow-md); /* Theme shadow */
    padding: 35px 40px; /* More padding */
    font-style: italic;
    color: var(--text-color-light);
    font-size: 1.1rem;
    position: relative;
    border: 1px solid var(--border-color);
}
.testimonial-quote::before { /* Decorative quote mark */
    content: "\201C";
    font-family: 'Georgia', serif; /* More classic quote font */
    font-size: 6rem; /* Larger quote mark */
    color: var(--primary-color); /* Theme primary */
    opacity: 0.1; /* Subtle */
    position: absolute;
    top: 10px; /* Adjusted position */
    left: 15px;
    line-height: 1;
}
.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color); /* Theme secondary color */
    margin-top: 20px;
    display: block; /* Ensure it's on a new line */
    font-style: normal; /* Non-italic author */
    text-align: right;
}
.swiper-button-next, .swiper-button-prev { color: var(--primary-color) !important; /* Important to override Swiper */ }
.swiper-pagination-bullet-active { background-color: var(--primary-color) !important; }

/* Final CTA Section */
.final-cta-section {
    background-color: var(--secondary-color); /* Use theme secondary color */
    color: #fff; /* White text */
}
.final-cta-section .section-title { color: #fff; } /* White title on dark bg */
.final-cta-section .section-title::after { background-color: var(--accent-color); } /* Accent underline */
.final-cta-section p { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 40px; }
.final-cta-section .cta-button { /* Ensure CTA button is styled appropriately here */
    background-color: var(--accent-color);
    color: #fff;
}
.final-cta-section .cta-button:hover {
    background-color: var(--accent-color-dark);
}

/* Store Logos Section */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); /* Slightly larger */
    align-items: center;
    justify-content: center; /* Center items if they don't fill row */
    gap: 25px; /* Increased gap */
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.store-logo-container {
    background-color: var(--card-bg-color); /* Use theme card bg for consistency */
    padding: 25px; /* More padding */
    border-radius: var(--border-radius-md); /* Consistent radius */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px; /* Increased height */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid var(--border-color); /* Add subtle border */
}
.store-logo-container:hover {
    transform: scale(1.05) translateY(-3px); /* Enhanced hover */
    box-shadow: var(--shadow-sm);
}
.store-logo-container img {
    max-width: 100%;
    max-height: 60px; /* Increased max height */
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.store-logo-container:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.store-logo-container.coming-soon p {
    color: var(--subtle-text-color); /* Use theme subtle text color */
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
}

/* Feedback Link (if used on landing page, distinct from header one) */
.feedback-link-container { text-align: center; padding: 10px 0; }
.feedback-link {
    display: inline-block;
    color: var(--subtle-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px; /* More padding */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg); /* Rounded */
    transition: background-color var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
}
.feedback-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.feedback-link i { margin-right: 8px; }

/* Animations (from original landing page) */
.feature-item, .step, .testimonial-quote {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.feature-item.is-visible, .step.is-visible, .testimonial-quote.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered animation delays (can be adjusted or removed if too much) */
.features-grid .feature-item:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-item:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-item:nth-child(3) { transition-delay: 0.3s; }
.how-it-works-steps .step:nth-child(1) { transition-delay: 0.1s; }
.how-it-works-steps .step:nth-child(2) { transition-delay: 0.25s; }
.how-it-works-steps .step:nth-child(3) { transition-delay: 0.4s; }

.testimonial-section .testimonial-quote.is-visible:nth-child(odd) { transition-delay: 0.1s; }
.testimonial-section .testimonial-quote.is-visible:nth-child(even) { transition-delay: 0.25s; }



@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.8rem; }
    .hero-section .subtitle { font-size: 1.3rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 80px 15px; min-height: auto; }
    .hero-section h1 { font-size: 2.4rem; } /* Adjusted */
    .hero-section .subtitle { font-size: 1.15rem; } /* Adjusted */
    .cta-button { padding: 14px 30px; font-size: 1rem; } /* Adjusted */

    .features-grid { grid-template-columns: 1fr; }
    .how-it-works-steps { flex-direction: column; align-items: center; }
    .step { flex-basis: auto; width: 100%; max-width: 380px; /* Increased max-width */ }
    .section { padding: 60px 15px; } /* Reduced padding */
    .section-title { font-size: 2rem; margin-bottom: 40px; }
}