/* style.css */
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-content { padding-top: 100px; /* Adjusted for fixed header */ }

/* Header */
.header { background: #fff; box-shadow: 0 2px 10px rgba(0,86,179,0.1); position: fixed; width:100%; top:0; z-index:1000; }
.nav-wrapper { display:flex; justify-content:space-between; align-items:center; padding: 1rem 0; }
.logo-img { height: 60px; max-width: 180px; }
.nav-menu { display:flex; list-style:none; align-items:center; gap: 1rem; }
.nav-item { position: relative; }
.nav-link, .nav-btn {
  text-decoration:none; color:#333; font-weight:600; padding: 0.8rem 1.2rem;
  font-size:1.1rem; transition:color .3s; white-space:nowrap;
}
.nav-link:hover { color:#0056b3; }

.nav-btn {
  /* --- REVISED CODE FOR PERFECT CENTERING --- */
  display: inline-flex;      /* Treats the button like a flex container */
  justify-content: center;  /* Centers content horizontally */
  align-items: center;        /* Centers content vertically */

  /* Original styles */
  background: #0056b3;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
  transition: all .3s;
}
.nav-btn:hover { background:#003d7a; transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,86,179,0.3); }

/* Services Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; list-style: none; padding: 0.5rem 0; border-radius: 8px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); min-width: 250px; z-index: 1001; }
.nav-item:hover .dropdown { display: block; }
.dropdown-link { display: block; padding: 0.75rem 1.5rem; color: #333; font-size: 1rem; font-weight: 500; text-decoration: none; transition: background .3s, color .3s; }
.dropdown-link:hover { background: #f0f8ff; color: #0056b3; }
.nav-link.has-dropdown::after { content: ' ▼'; font-size: 0.7em; margin-left: 4px; }

/* Mobile Nav */
.nav-toggle { display:none; background:none; border:none; font-size:2rem; color:#0056b3; cursor:pointer; padding:.5rem; z-index: 1002; }

@media (max-width:1024px) {
  /* Main mobile menu panel */
  .nav-menu {
    position:fixed;
    top:0;
    right:-100%;
    width: 300px;
    max-width: 80%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding: 6rem 2rem 2rem;
    transition:right .4s ease-in-out;
    box-shadow:-5px 0 15px rgba(0,0,0,0.1);
    gap: 0.5rem;
    overflow-y: auto;
  }
  .nav-menu.nav-menu--open {
    right: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link, .nav-btn {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .nav-btn {
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }

  /* --- The Corrected Mobile Dropdown Logic --- */
  .dropdown {
    display: block; /* The dropdown container is always present in the layout */
    position: static;
    box-shadow: none;
    padding: 0 0 0 1rem; /* Padding only on the left */
    min-width: auto;
    border: none;
    
    /* Control visibility ONLY with max-height and overflow */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  /* When the parent LI has the 'is-open' class, expand the dropdown */
  .nav-item.is-open .dropdown {
    max-height: 500px; /* A large enough value to show all items */
    padding-top: 0.5rem; /* Add padding only when open */
    padding-bottom: 0.5rem;
  }
  .dropdown-link {
    padding: 0.6rem 1rem;
  }
  
  /* Make the +/- icon bigger and more obvious */
  .nav-link.has-dropdown::after {
    content: '+';
    float: right;
    transition: transform 0.3s ease-in-out;
    font-size: 1.8rem; /* Bigger size */
    font-weight: 300;  /* Thinner, more icon-like look */
    line-height: 1;    /* Better vertical alignment */
  }
  .nav-item.is-open .nav-link.has-dropdown::after {
    content: '–';
    transform: rotate(180deg);
  }
}


/* Hero Section */
.hero-section { background:linear-gradient(135deg,#0056b3,#003d7a); color:#fff; padding:5rem 0; display:flex; align-items:center; min-height:80vh; }
.hero-content { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.hero-text { animation: fadeInUp .8s ease-out; }
.hero-title { font-size:3.2rem; font-weight:700; margin-bottom:1rem; line-height: 1.2; }
.hero-subtitle { font-size:1.4rem; margin:1rem 0; opacity:.9; }
.hero-description { line-height:1.8; opacity:.8; margin-bottom:2rem; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; margin-top: 2.5rem; }
.btn-primary, .btn-secondary { border-radius:8px; font-weight:600; text-decoration:none; transition:all .3s; padding:1rem 2rem; border: 2px solid transparent; }
.btn-primary { background:#fff; color:#0056b3; box-shadow:0 4px 12px rgba(255,255,255,0.2); }
.btn-primary:hover { background:#f0f8ff; transform:translateY(-2px); box-shadow:0 6px 16px rgba(255,255,255,0.3); }
.btn-secondary { background:transparent; border:2px solid #fff; color:#fff; }
.btn-secondary:hover { background:#fff; color:#0056b3; transform:translateY(-2px); }
.hero-img { width:100%; max-width: 500px; justify-self: center; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,0.2); transition:transform .3s; display:block; }
.hero-img:hover { transform:scale(1.05); }

/* General Section Styling, etc. */
/* ... All your other styles like .section, .service-card, etc. remain here ... */


/* Responsive */
/* This block is now empty as requested, all rules are in the 768px block */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* --- THE ONLY CHANGE IS NOW INSIDE THIS BLOCK --- */
@media (max-width: 768px) {
  .main-content { padding-top: 80px; }
  
  /* THIS IS THE ONLY ADDITION - IT ONLY AFFECTS THE HERO SECTION */
  .hero-content { 
    grid-template-columns:1fr; 
    text-align:center; 
  }
  .hero-text { 
    order: 2; 
  }
  .hero-img { 
    order: 1; 
    margin: 0 auto 2rem auto; 
  }
  .hero-buttons {
    justify-content: center; /* This centers the buttons */
  }
  /* END OF ADDITION */

  .hero-title { font-size:2.5rem; }
  .section-title { font-size:2rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* General Section Styling */
.section { padding: 5rem 0; }
.section-bg { background: #f8fafe; }
.section-title { text-align:center; font-size:2.5rem; color:#0056b3; margin-bottom:1rem; }
.section-subtitle { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; font-size: 1.1rem; color: #555; }

/* Home Page Service Cards */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
    display: block; text-decoration: none; color: #333;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 2rem; transition: all .3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0,86,179,0.05);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,86,179,0.15);
}
.service-card .service-icon { width: 60px; height: 60px; margin-bottom: 1.5rem; }
.service-card h3 { color: #003d7a; margin-bottom: 0.75rem; font-size: 1.4rem; }
.service-card p { margin-bottom: 1.5rem; line-height: 1.7; }
.service-card .learn-more { font-weight: 600; color: #0056b3; transition: color .3s; }
.service-card .learn-more i { margin-left: 8px; transition: transform .3s; }
.service-card:hover .learn-more i { transform: translateX(5px); }

/* How It Works (Steps) */
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
.step-card { background:#fff; padding:2rem; border-radius:12px; text-align:center; box-shadow:0 4px 20px rgba(0,86,179,0.08); transition:all .3s; border: 1px solid #e2e8f0; }
.step-card:hover { transform:translateY(-5px); box-shadow:0 8px 30px rgba(0,86,179,0.15); }
.step-number { background:#0056b3; color:#fff; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:bold; font-size: 1.2rem; margin:0 auto 1.5rem; }

/* Market Insights */
.insights-section { background:linear-gradient(135deg,#0056b3,#003d7a); color:#fff; }
.insights-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
.insight-card { text-align:center; padding:2rem; background:rgba(255,255,255,0.1); border-radius:12px; backdrop-filter:blur(10px); transition:all .3s ease; }
.insight-card:hover { transform:translateY(-5px); background:rgba(255,255,255,0.15); }
.insight-number { font-size:3.5rem; font-weight:700; margin-bottom:0.5rem; }
.insight-card h4 { color:#fff; opacity: 0.9; }

/* FAQ Section */
.faq-grid { max-width:900px; margin:0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; margin-bottom:1rem; }
.faq-question {
  font-family: 'Montserrat', sans-serif; font-weight:600; cursor:pointer;
  background:transparent; border:none; padding:1.2rem 0.5rem; width:100%;
  text-align:left; font-size:1.15rem; color:#003d7a;
  display:flex; justify-content:space-between;
  align-items:center; transition:color .3s;
}
.faq-question:hover { color: #0056b3; }
.faq-question::after { content:"+"; font-size:1.5rem; color:#0056b3; transition: transform .3s; }
.faq-question[aria-expanded="true"]::after { content:"−"; transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out;
}
.faq-answer p { padding: 0 0.5rem 1.5rem; line-height: 1.7; color: #555; }

/* CTA Section */
.cta-section { background: #f8fafe; text-align:center; }
.cta-content { max-width:800px; margin: 0 auto; }
.cta-content h2 { color: #0056b3; font-size: 2.2rem; }
.cta-content p { margin: 1rem 0 1.5rem; } /* Adjusted margin slightly */


/* NEW Footer */
.footer { background:#1a1a1a; color:#ccc; padding:1.5rem 0; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo-img { max-width: 120px; vertical-align: middle; }
.footer-link { color:#ccc; text-decoration:none; transition: color .3s; }
.footer-link:hover { color:#fff; text-decoration: underline; }
.social-links { display:flex; gap:1.5rem; }
.social-link { color:#ccc; font-size:1.3rem; transition:color .3s; }
.social-link:hover { color:#fff; }
.footer-copyright { color: #888; }

/* Responsive */
@media (max-width: 1024px) {
  /* Footer responsive */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-content { padding-top: 80px; }
  .hero-content { grid-template-columns:1fr; text-align:center; }
  .hero-text { order: 2; }
  .hero-img { order: 1; margin: 0 auto 2rem auto; }
  .hero-title { font-size:2.5rem; }
  .section-title { font-size:2rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up { transform: translateY(30px); }
.zoom-in { transform: scale(0.95); }
.fade-in-left { transform: translateX(-30px); }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
}
/* ADD THESE STYLES TO THE END OF YOUR style.css FILE */

/* Hero Section Features List */
.hero-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}
.hero-features i {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* "For Everyone" Tabs Section */
.tabs-section { text-align: center; }
.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    color: #555;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}
.tab-btn:hover {
    background: #f0f8ff;
    border-color: #0056b3;
}
.tab-btn.active {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}
.tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}
.tab-content.active {
    display: grid;
    animation: fadeInUp .5s;
}
.tab-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,86,179,0.15);
}
@media (max-width: 768px) {
    .tab-content { grid-template-columns: 1fr; text-align: center; }
    .tab-content img { order: -1; margin-bottom: 2rem; }
}


/* "Sendit Advantage" Section */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.advantage-card {
    text-align: center;
}
.advantage-card .icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
}
.advantage-card h3 {
    color: #003d7a;
    margin-bottom: 0.5rem;
}


/* "Why Partner" Section */
.why-partner-section {
    background: linear-gradient(rgba(0, 61, 122, 0.85), rgba(0, 61, 122, 0.85)), url(img/why-partner-bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 6rem 0;
    border-radius: 20px;
    margin: 0 20px;
}
.why-partner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.why-partner-content .section-title, .why-partner-content h3 { color: #fff; }
.why-partner-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}
.why-partner-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.why-partner-list i {
    color: #28a745;
    font-size: 1.2rem;
}
@media (max-width: 600px) {
    .why-partner-list { grid-template-columns: 1fr; }
}


/* Clients Section */
/* ADD THIS NEW BLOCK INSTEAD */
.clients-section { text-align: center; padding: 4rem 0; background: #fff; }
.clients-section .section-title { font-size: 1.5rem; color: #888; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 3rem; align-items: center; }

.client-logo {
    position: relative; /* Required for the shine effect */
    overflow: hidden;   /* Clips the shine effect */
    display: flex;      /* Enables flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    height: 100px;      /* Set a height as needed */
}


.client-logo img {
    max-width: 140px;
    transition: transform .3s ease-in-out;
    margin: 0 auto;
    display: block;
   
}


.client-logo:hover img {
    transform: scale(1.05);
}

/* The Shine Effect (Unchanged) */
.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

.client-logo:hover::before {
    animation: shine-effect 0.85s ease-out;
}

@keyframes shine-effect {
    from {
        left: -100%;
    }
    to {
        left: 125%;
    }
}

/* --- ADD THESE NEW STYLES TO THE END OF YOUR style.css FILE --- */

/* "How Sendit Works" Tabs Section */
.how-works-section {
    text-align: center;
}
.how-works-steps {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2.5rem;
}
.how-works-step-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    border-bottom: 3px solid transparent;
}
.how-works-step-btn:hover {
    color: #0056b3;
}
.how-works-step-btn.active {
    color: #0056b3;
    border-bottom-color: #0056b3;
}
.how-works-panel {
    display: none;
    text-align: center;
}
.how-works-panel.active {
    display: block;
    animation: fadeInUp .5s ease-in-out;
}
.how-works-panel h3 {
    font-size: 1.8rem;
    color: #003d7a;
    margin-bottom: 1.5rem;
}
.how-works-panel p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}
.how-works-panel img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 12px;
}

/* "Trusted Partner" Section */
.trusted-partner-section {
    background-color: #f8fafe;
}
.trusted-partner-grid {
    display: grid;
    grid-template-columns: 400px 5fr;
    gap: 3rem;
    align-items: center;
}
.stats-card {
    background: #003d7a; /* Darker blue from your primary palette */
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}
.map-container {
    text-align: center;
}
.map-container img {
    max-width: 100%;
    width: 500px;
}

@media (max-width: 992px) {
    .trusted-partner-grid {
        grid-template-columns: 1fr;
    }
    .stats-card {
        padding: 2rem;
        text-align: center;
    }
}
/* --- 404 ERROR PAGE STYLES --- */

.error-page-body {
    background-color: #f8fafe;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures it takes full viewport height */
}

.error-page-main {
    max-width: 600px;
    text-align: center;
    padding: 2rem;
}

.error-animation-container {
    margin-bottom: 2rem;
    height: 150px; /* Fixed height for the container */
}

.scooter-svg {
    width: 250px;
    height: auto;
    overflow: visible;
}

/* NEW SVG ANIMATION */
#scooter-group {
    animation: scooter-shake 0.5s linear infinite;
}
#wheel-front, #wheel-rear {
    transform-origin: center;
    animation: wheel-wobble 1s ease-in-out infinite;
}
#sparks, #bang-text {
    animation: sputter 2s linear infinite;
    animation-delay: 0.5s;
}

@keyframes scooter-shake {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(1px, -1px) rotate(-0.5deg); }
    50% { transform: translate(-1px, 1px) rotate(0); }
    75% { transform: translate(1px, 1px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0); }
}
@keyframes wheel-wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}
@keyframes sputter {
    0%, 10%, 100% { opacity: 0; }
    5% { opacity: 1; }
}


/* GIF Placeholder styles (if you choose Option 2) */
.error-gif {
    max-width: 300px;
    height: auto;
}

/* Text and Button Styles */
.error-page-content h1 {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
    font-weight: 700;
}
.error-page-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.error-page-btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
    transition: all .3s;
}
.error-page-btn:hover {
    background: #003d7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Ensures buttons stack on small screens */
}
.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}
.cta-btn-secondary:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}
/* --- PRIVACY POLICY PAGE STYLES --- */

.policy-container {
    max-width: 800px;
    line-height: 1.8;
}

.policy-container h2 {
    font-size: 1.8rem;
    color: #003d7a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eef2f7;
    padding-bottom: 0.5rem;
}

.policy-container p, .policy-container li {
    color: #555;
    margin-bottom: 1rem;
}

.policy-container ul {
    list-style-type: disc;
    padding-left: 25px;
}

.policy-container strong {
    color: #333;
}

.effective-date {
    font-style: italic;
    color: #888;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-email-link {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.policy-email-link:hover {
    text-decoration: underline;
}

/*
==========================================================================
== NEW RESPONSIVE STYLES FOR VERY SMALL SCREENS (350px-ish)
== This block is added to the end of the file and does not change any
== of the original code above. It only contains overrides for small devices.
==========================================================================
*/
@media (max-width: 380px) {
    .container {
        padding: 0 15px;
    }
    .main-content {
        padding-top: 70px; /* Slightly less padding for smaller header */
    }
    
    /* Header adjustments */
    .logo-img {
        height: 50px;
    }
    .nav-wrapper {
        padding: 0.5rem 0;
    }

    /* General Typography */
    .section {
        padding: 3rem 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .cta-content h2 {
        font-size: 1.9rem;
    }

    /* Buttons and Links */
    .btn-primary, .btn-secondary, .cta-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .tab-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Component Specifics */
    .hero-features {
        gap: 1rem;
        justify-content: center;
    }
    .service-grid {
        grid-template-columns: 1fr; /* Stack service cards */
    }
    .insight-number {
        font-size: 2.8rem;
    }
    .stat-item .stat-number {
        font-size: 2.8rem;
    }
    .stats-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .how-works-step-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    .why-partner-section {
        margin: 0 15px;
        padding: 4rem 1rem;
    }
    
    /* 404 Error Page */
    .error-page-content h1 {
        font-size: 2.5rem;
    }
    .error-page-btn {
        padding: 0.8rem 2rem;
    }
}