:root {
    --primary-color: #ffc43a;
    --dark-blue: #0a111a;
    --light-blue: #111e2d;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-light-gray: #f0f2f5;
    --border-radius: 8px;
    --section-padding: 80px 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

p.subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: #ffd46b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--dark-blue);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Header */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(10, 17, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#hero h1 {
    margin-bottom: 20px;
}

#hero h1 .highlight {
    color: var(--primary-color);
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

/* Gallery Slider Section */
#gallery-slider {
    padding: 50px 0; /* Adjust padding as needed */
    background-color: var(--dark-blue); /* Or a color that fits the theme */
}

#gallery-slider .container {
    /* Ensures the slider container itself is centered if it's narrower than the page's .container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container { /* Renamed from slider-track-container */
    width: 1080px;  /* Updated width of the slider viewport */
    height: 640px; /* Updated height of the slider viewport */
    overflow: hidden; /* Crucial for the sliding effect */
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2); /* Optional: for a subtle depth */
}

.slider-track {
    display: flex;
    height: 100%;
    /* Width will be set by JS or calculated based on (numOriginalSlides + 2 clones) * slideWidth */
    /* No CSS animation, JS will handle transitions */
    transition: transform 0.4s ease-in-out; /* For smooth slide effect */
}

.slide { /* New class for individual images */
    width: 1080px; /* Each image takes the full width of the slider viewport */
    height: 640px; /* Each image takes the full height of the slider viewport */
    object-fit: cover; /* Ensures images cover the area, may crop if aspect ratios differ */
    flex-shrink: 0; /* Prevents images from shrinking */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Entrepreneur CTA Section (Replaces Seen On) */
#entrepreneur-cta {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

#entrepreneur-cta .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.entrepreneur-cta-image {
    flex: 1;
    max-width: 400px; /* Adjusted for a more squarish look */
    height: 320px;    /* Set a fixed height to make it less tall */
}

.entrepreneur-cta-image img {
    width: 100%;
    height: 100%; /* Make image fill the container height */
    border-radius: var(--border-radius);
    object-fit: cover;
}

.entrepreneur-cta-content {
    flex: 1.5; /* Give more space to text */
}

.entrepreneur-cta-content h2 {
    text-align: left;
    font-size: 2.5rem; /* Adjust as needed */
    margin-bottom: 15px;
    color: var(--primary-color);
}

.entrepreneur-cta-content .subtitle-cta {
    text-align: left;
    font-size: 1.5rem; /* Adjust as needed */
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: none; /* Override general subtitle centering */
    margin-left: 0;
    margin-right: 0;
}

.entrepreneur-cta-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

.entrepreneur-cta-content .btn {
    margin-top: 20px;
}

/* How It Works Section */
#how-it-works {
    padding: var(--section-padding);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.step {
    flex: 1;
}

.step img {
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-muted);
}

#how-it-works .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Portfolio Section */
#portfolio {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#portfolio .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Stats Section */
#stats {
    padding: var(--section-padding);
    background-color: var(--dark-blue);
}

#stats h2 {
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-text-content {
    min-width: 180px;
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
}

.stat-bar-container {
    flex-grow: 1;
    background-color: var(--light-blue);
    border-radius: var(--border-radius);
    height: 20px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    background-color: #A960FF;/* Cookie Consent Popup */
    width: 0%;
    border-radius: var(--border-radius);
    transition: width 1.5s ease-out;
}

/* Cookie Consent Popup */
#cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Dark background */
    color: #ecf0f1; /* Light text */
    padding: 20px 25px; /* Increased padding */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensure it's above other content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

#cookie-consent-popup p {
    margin: 0;
    margin-right: 20px;
}

#cookie-consent-popup a {
    color: #3498db; /* Link color */
    text-decoration: underline;
}

#cookie-consent-popup a:hover {
    color: #5dade2;
}

#accept-cookies-btn {
    background-color: #27ae60; /* Green button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#accept-cookies-btn:hover {
    background-color: #2ecc71;
}

/* Reviews Section */
#reviews {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

#reviews h2 {
    margin-bottom: 50px;
}

.reviews-cta {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-cta p {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    min-width: 250px;
}

.reviews-cta .btn {
    background-color: var(--dark-blue);
    color: var(--text-color);
}
.reviews-cta .btn:hover {
    background-color: #000;
}

/* Value Proposition Section */
#value-prop {
    padding: 60px 0;
    background-color: var(--light-blue);
    text-align: center;
}

.value-prop-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- Other Services Page --- */
#services-grid {
    padding: var(--section-padding);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-blue);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card .service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-card .btn {
    width: 100%;
}

/* --- Our Work Page --- */
#portfolio-gallery {
    padding: var(--section-padding);
}

.full-gallery .portfolio-item {
    cursor: pointer;
}

/* --- Image Modal --- */
.image-modal {
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    line-height: 1;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

.image-modal-close:hover {
    opacity: 1;
}

/* Pricing Section */
#pricing {
    padding: var(--section-padding);
}

.pricing-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--light-blue);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.pricing-card.main-offer {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-card .price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-card .price-tag span {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 10px;
}

.pricing-card ul {
    margin-top: 20px;
}
.pricing-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}
.pricing-card .btn {
    margin-top: 30px;
    width: 100%;
}

/* Testimonials Section */
#testimonials {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--dark-blue);
    padding: 30px;
    border-radius: var(--border-radius);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.author strong {
    display: block;
    color: var(--text-color);
}
.author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
#faq {
    padding: var(--section-padding);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

/* CTA Section */
#cta {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    text-align: center;
}
#cta h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
}
#cta p {
    color: var(--dark-blue);
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
#cta .btn-primary {
    background-color: var(--text-color);
}
#cta .btn-primary:hover {
     background-color: var(--dark-blue);
     color: var(--text-color);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: var(--light-blue);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about {
    flex: 2;
    min-width: 250px;
}
.footer-about .logo {
    margin-bottom: 20px;
}
.footer-about p {
    margin: 0 auto;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 150px;
}
footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}
footer ul li {
    margin-bottom: 10px;
}
footer ul a {
    color: var(--text-muted);
}
footer ul a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .copyright {
    margin-right: 20px; /* Adds some space if items wrap */
}

.footer-legal-links a {
    color: var(--text-muted);
    margin-left: 10px; /* Space between links if there are multiple */
    white-space: nowrap; /* Prevents links from breaking onto new lines individually */
}

/* Page Hero (for About, How it Works, etc.) */
.page-hero {
    padding: var(--section-padding);
    text-align: center;
    background-color: var(--light-blue);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* --- How It Works Page --- */

/* How Steps Section */
#how-steps {
    padding: var(--section-padding);
}

.steps-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step-detailed {
    display: flex;
    align-items: center;
    gap: 40px;
}

.step-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.step-detailed img {
    height: 100px;
    flex-shrink: 0;
}

.step-detailed-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-detailed-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Included Section */
#included {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

#included .container {
    max-width: 1000px;
}

.included-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.included-list {
    flex: 1;
}

.included-list h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.included-list ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.included-image {
    flex: 1;
    max-width: 450px;
}

.included-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* Business Model Section */
#business-model {
    padding: var(--section-padding);
}

#business-model .container {
    max-width: 800px;
    text-align: center;
}

#business-model h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.business-model-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.business-model-content p:not(:last-child) {
    margin-bottom: 20px;
}

/* How It Works FAQ */
#how-faq {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

/* About Page */
#about-hero {
    padding: var(--section-padding);
    text-align: center;
    background-color: var(--light-blue);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

#about-hero h1 {
    margin-bottom: 20px;
}

#about-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

#mission {
    padding: var(--section-padding);
    text-align: center;
}

.mission-statement {
    font-size: 1.8rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    color: var(--primary-color);
    font-style: italic;
}

#story {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

#story .container {
    max-width: 800px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

#team {
    padding: var(--section-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 50px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member span {
    color: var(--text-muted);
}

/* --- Application Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-container {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#application-form label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
#application-form .field-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
#application-form .privacy-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}
#application-form input[type="text"],
#application-form input[type="email"],
#application-form input[type="tel"],
#application-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-blue);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}
#application-form textarea {
    resize: vertical;
}
#application-form .radio-group {
    display: flex;
    gap: 20px;
}
#application-form .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
}
#application-form input[type="radio"] {
    accent-color: var(--primary-color);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
#prev-btn, #next-btn, #submit-btn {
    min-width: 120px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-links {
        display: none; /* simple hiding for mobile, could be a toggle menu */
    }
    .steps {
        flex-direction: column;
    }
    .pricing-details {
        flex-direction: column;
    }
    .pricing-card.main-offer {
        transform: scale(1);
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-about p {
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column; /* Stack copyright and links on small screens */
        gap: 10px; /* Space between stacked items */
        text-align: center;
    }
    #entrepreneur-cta .container {
        flex-direction: column;
        text-align: center;
    }
    .entrepreneur-cta-content h2, .entrepreneur-cta-content .subtitle-cta { text-align: center; }

    .step-detailed, .step-detailed:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .step-detailed img {
        height: 80px;
    }

    .included-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .stats-grid {
        gap: 30px;
    }
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .stat-text-content {
        min-width: unset;
        width: 100%;
    }
    .stat-bar-container {
        width: 100%;
        height: 15px;
    }
    .stat-number {
        font-size: 2rem;
    }
}