/* MATCOM Corporation Main Stylesheet */

:root {
  --color-primary: #142850;
  --color-secondary: #27496d;
  --color-accent: #00a8cc;
  --color-bg: #f8f9fa;
  --color-white: #fff;
  --color-gray: #eaeaea;
  --color-text: #222;
  --nav-height: 64px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

body {
  margin: 0;
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
}

@media (max-width: 700px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(20,40,80,0.05);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links li a:hover {
  color: var(--color-accent);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--color-primary);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    gap: 1.5rem;
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  /* Hamburger Animation */
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .nav-links li a {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Footer */
.footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
}
.footer-info {
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  background: var(--color-white);
  padding: 4rem 0 2rem 0;
  text-align: center;
  box-shadow: 0 2px 16px rgba(20,40,80,0.04);
}
.hero-content h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.tagline {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.intro {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.85rem 2.5rem;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,168,204,0.08);
  transition: background var(--transition), transform var(--transition);
}
.cta-btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px) scale(1.04);
}

/* Full Background Hero Section */
.hero-full-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(20,40,80,0.82) 60%, rgba(0,168,204,0.55) 100%);
  z-index: 2;
}
.hero-center-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 3rem 1rem;
}
.hero-center-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(20,40,80,0.18);
}
.hero-center-content .tagline {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,168,204,0.18);
}
.hero-center-content .security-niche {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(20,40,80,0.18);
}
.hero-center-content .intro {
  font-size: 1.08rem;
  color: #eaeaea;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(20,40,80,0.10);
}
.hero-center-content .cta-btn {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  padding: 1rem 2.8rem;
  border-radius: 32px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,168,204,0.18);
  transition: background var(--transition), transform var(--transition);
}
.hero-center-content .cta-btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px) scale(1.04);
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
  .hero-full-bg {
    min-height: 80vh;
  }
  
  .hero-center-content {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  
  .hero-center-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-center-content .tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .hero-center-content .security-niche {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-center-content .intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-center-content .cta-btn {
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-full-bg {
    min-height: 70vh;
  }
  
  .hero-center-content h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .hero-center-content .tagline {
    font-size: 1rem;
  }
  
  .hero-center-content .security-niche {
    font-size: 0.9rem;
  }
  
  .hero-center-content .intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .hero-center-content .cta-btn {
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
  }
}

/* Services Section */
.services {
  background: var(--color-bg);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.services h2 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(20,40,80,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 320px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(20,40,80,0.10);
}
.service-card .icon-bg {
  background: var(--color-primary);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(20,40,80,0.08);
}
.service-card h3 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--color-text);
  font-size: 1rem;
}

/* Mobile Services Styles */
@media (max-width: 768px) {
  .services {
    padding: 2rem 0 1.5rem 0;
  }
  
  .services h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .services-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.6rem;
  }
  
  .services-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
.why-choose {
  background: var(--color-white);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.why-choose h2 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.why-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  min-width: 120px;
  margin-bottom: 1.5rem;
}
.why-item .icon-bg {
  background: var(--color-secondary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(39,73,109,0.08);
}
.why-item span {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
}

/* How It Works Section */
.how-it-works {
  background: var(--color-bg);
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-gray);
}
.how-it-works h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.how-intro {
  color: var(--color-text);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.how-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.how-step {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 1rem;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition);
}
.how-step:hover {
  box-shadow: 0 8px 32px rgba(0,168,204,0.12);
  transform: translateY(-4px) scale(1.02);
}
.how-step .icon-bg {
  background: var(--color-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: 0 2px 8px rgba(0,168,204,0.10);
}
.how-step h4 {
  color: var(--color-secondary);
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}
.how-step p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin: 0;
}
.how-summary {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* Modern How It Works Section */
.how-steps-modern {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.how-step-modern {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 300px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.how-step-modern:hover {
  box-shadow: 0 8px 32px rgba(0,168,204,0.12);
  transform: translateY(-4px) scale(1.02);
}
.how-step-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.how-step-number {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,168,204,0.10);
  border: 3px solid #fff;
  z-index: 2;
}
.how-step-modern h4 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  font-weight: 600;
}
.how-step-modern p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin: 0;
}
@media (max-width: 900px) {
  .how-steps-modern {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .how-steps-modern {
    flex-direction: column;
    align-items: center;
  }
  .how-step-modern {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Page Hero Section */
.page-hero {
  background: var(--color-white);
  padding: 3rem 0 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(20,40,80,0.04);
}
.page-hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.page-intro {
  color: var(--color-text);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: var(--color-bg);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 1.5rem 1.25rem;
  max-width: 300px;
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,168,204,0.12);
  transform: translateY(-4px) scale(1.02);
}
.feature-card .icon-bg {
  background: var(--color-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(0,168,204,0.10);
}
.feature-card h3 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.feature-card p {
  color: var(--color-text);
  font-size: 0.98rem;
}

/* Emphasis Section */
.emphasis {
  background: var(--color-white);
  padding: 2rem 0 1.5rem 0;
  text-align: center;
}
.emphasis-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.emphasis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  min-width: 120px;
  margin-bottom: 1.5rem;
}
.emphasis-item .icon-bg {
  background: var(--color-primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(20,40,80,0.08);
}
.emphasis-item span {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Camera Verification Section */
.camera-verification {
  background: var(--color-white);
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.camera-verification-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.camera-info {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 500px;
  text-align: left;
}
.camera-info h2 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.camera-info p {
  color: var(--color-text);
  font-size: 1.05rem;
}
.camera-mockup {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.camera-feed-placeholder {
  background: var(--color-gray);
  border-radius: 12px;
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(20,40,80,0.06);
  margin-bottom: 0.5rem;
}
.camera-feed-label {
  color: var(--color-secondary);
  font-size: 0.98rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Security Details Section */
.security-details {
  background: var(--color-bg);
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.security-details-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.security-detail {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(20,40,80,0.06);
  padding: 1.5rem 1.25rem;
  max-width: 300px;
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 1.5rem;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition);
}
.security-detail:hover {
  box-shadow: 0 8px 32px rgba(20,40,80,0.10);
  transform: translateY(-4px) scale(1.02);
}
.security-detail .icon-bg {
  background: var(--color-primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(20,40,80,0.08);
}
.security-detail h4 {
  color: var(--color-secondary);
  margin: 0 0 0.25rem 0;
  font-size: 1.08rem;
}
.security-detail p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin: 0;
}

/* About Page Sections */
.about-overview {
  background: var(--color-bg);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.about-overview h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.about-overview p {
  color: var(--color-text);
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto;
}
.mission-vision {
  background: var(--color-white);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.mission-vision-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.mission-block, .vision-block {
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 1.5rem 1.25rem;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.mission-block:hover, .vision-block:hover {
  box-shadow: 0 8px 32px rgba(0,168,204,0.12);
  transform: translateY(-4px) scale(1.02);
}
.mission-block .icon-bg, .vision-block .icon-bg {
  background: var(--color-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(0,168,204,0.10);
}
.mission-block h3, .vision-block h3 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.mission-block p, .vision-block p {
  color: var(--color-text);
  font-size: 0.98rem;
}
.team {
  background: var(--color-bg);
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.team-photo-placeholder {
  background: var(--color-gray);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(20,40,80,0.08);
}
.team-placeholder p {
  color: var(--color-secondary);
  font-size: 1rem;
  margin: 0;
}

/* Account & Finance Page Styling */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Section Container */
.what-we-provide {
  background: #ffffff;
  padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(20, 40, 80, 0.04);
}

/* Section Title */
.section-title {
  color: #00a8cc;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

/* Intro & Closing Text */
.intro-text,
.closing-text {
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.06rem;
  line-height: 1.7;
  color: #444;
}

/* Grid for Cards */
.provide-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Individual Service Card */
.provide-card {
  background: #f0f6fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(20, 40, 80, 0.06);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 320px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.provide-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(20, 40, 80, 0.12);
}

.provide-icon {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.provide-card h3 {
  color: #2f3640;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  font-weight: 600;
}

.provide-card p {
  color: #333;
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.5;
}

/* Image Containers */
.features-img,
.camera-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.features-img img,
.camera-img img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 168, 204, 0.10);
}

/* Responsive */
@media (max-width: 900px) {
  .provide-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .provide-card {
    max-width: 100%;
    width: 100%;
  }

  .features-img img,
  .camera-img img {
    max-width: 100%;
  }

  .intro-text,
  .closing-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* Mobile What We Provide Styles */
@media (max-width: 768px) {
  .what-we-provide {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .intro-text,
  .closing-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .provide-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .provide-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
  }
  
  .provide-card h3 {
    font-size: 1.1rem;
  }
  
  .provide-card p {
    font-size: 0.95rem;
  }
  
  .features-img img,
  .camera-img img {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .what-we-provide {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .intro-text,
  .closing-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .provide-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .provide-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .provide-card h3 {
    font-size: 1rem;
  }
  
  .provide-card p {
    font-size: 0.9rem;
  }
  
  .features-img img,
  .camera-img img {
    padding: 0 0.5rem;
  }
}

/* Professional Footer */
.footer-new {
  background: #142850;
  color: #fff;
  padding: 0;
  margin-top: 4rem;
  font-size: 1rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 3rem 0 2rem 0;
}
.footer-brand {
  flex: 1 1 200px;
  min-width: 180px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: #00a8cc;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.footer-links, .footer-contact, .footer-social {
  flex: 1 1 160px;
  min-width: 140px;
  margin-bottom: 1.5rem;
}
.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li, .footer-contact ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a, .footer-contact ul li a {
  color: #eaeaea;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links ul li a:hover, .footer-contact ul li a:hover {
  color: #00a8cc;
}
.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00a8cc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background var(--transition), transform var(--transition);
}
.footer-social .social-icons a:hover {
  background: #fff;
  transform: scale(1.08);
}
.footer-social .social-icons svg {
  display: block;
}
.footer-bottom {
  background: #101e36;
  padding: 1rem 0;
  font-size: 0.98rem;
  border-top: 1px solid #223a5f;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: #00a8cc;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.98rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; /* Reduce from default (e.g., 1.5rem) */
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    gap: 0rem; /* Even smaller gap for very small screens */
  }
}

/* Home About Us Section */
.about-us-home {
  background: var(--color-bg);
  padding: 3.5rem 0 2.5rem 0;
  text-align: left;
}
.about-us-grid {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.about-us-text {
  flex: 2 1 340px;
  min-width: 220px;
  max-width: 600px;
}
.about-us-text h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-us-text p {
  color: var(--color-text);
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}
.about-mv {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-mission, .about-vision {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 1.2rem 1rem;
  min-width: 180px;
  flex: 1 1 180px;
}
.about-mission h4, .about-vision h4 {
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
}
.about-mission p, .about-vision p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin: 0;
}
.about-us-img {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-img img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20,40,80,0.10);
}
@media (max-width: 900px) {
  .about-us-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .about-us-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-us-img img {
    max-width: 100%;
  }
  .about-mv {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Industries We Serve Section */
.industries {
  background: var(--color-white);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.industries-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.industry-card {
  background: var(--color-bg);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(20,40,80,0.06);
  padding: 1.5rem 1.2rem;
  min-width: 140px;
  max-width: 180px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 1.2rem;
}
.industry-icon {
  margin-bottom: 0.7rem;
}

/* Why Choose MATCOM Section */
.why-matcom {
  background: var(--color-bg);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.why-matcom-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.why-matcom-card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 1.2rem 1rem;
  min-width: 140px;
  max-width: 180px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}
.why-matcom-icon {
  margin-bottom: 0.7rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--color-white);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.testimonials-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--color-bg);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(20,40,80,0.06);
  padding: 1.5rem 1.2rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.testimonial-author {
  color: var(--color-secondary);
  font-size: 0.98rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Our Technology Section */
.our-tech {
  background: var(--color-bg);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.our-tech-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.tech-card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,168,204,0.06);
  padding: 1.2rem 1rem;
  min-width: 140px;
  max-width: 180px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}
.tech-icon {
  margin-bottom: 0.7rem;
}

/* Call to Action Section */
.cta-section {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 3rem 0 2.5rem 0;
}
.cta-container {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-btn.cta-btn-lg {
  font-size: 1.15rem;
  padding: 1.1rem 2.8rem;
  border-radius: 32px;
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,168,204,0.18);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cta-btn.cta-btn-lg:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Mobile CTA Section Styles */
@media (max-width: 768px) {
  .cta-section {
    padding: 2.5rem 0 2rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .cta-btn.cta-btn-lg {
    font-size: 1rem;
    padding: 1rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2rem 0 1.5rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .cta-section p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .cta-btn.cta-btn-lg {
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 900px) {
  .industries-grid, .why-matcom-grid, .testimonials-grid, .our-tech-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .industries-grid, .why-matcom-grid, .testimonials-grid, .our-tech-grid {
    flex-direction: column;
    align-items: center;
  }
  .industry-card, .why-matcom-card, .testimonial-card, .tech-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* General Mobile Container Adjustments */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  /* Adjust section padding for mobile */
  .about-us-home,
  .how-it-works,
  .industries,
  .why-matcom,
  .testimonials,
  .our-tech {
    padding: 2rem 0 1.5rem 0;
  }
  
  /* Adjust grid layouts for mobile */
  .about-us-grid,
  .how-steps-modern,
  .industries-grid,
  .why-matcom-grid,
  .testimonials-grid,
  .our-tech-grid {
    gap: 1.5rem;
  }
  
  /* Make cards full width on mobile */
  .about-us-text,
  .about-us-img,
  .how-step-modern,
  .industry-card,
  .why-matcom-card,
  .testimonial-card,
  .tech-card {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  
  /* Further reduce padding for very small screens */
  .about-us-home,
  .how-it-works,
  .industries,
  .why-matcom,
  .testimonials,
  .our-tech {
    padding: 1.5rem 0 1rem 0;
  }
  
  .about-us-grid,
  .how-steps-modern,
  .industries-grid,
  .why-matcom-grid,
  .testimonials-grid,
  .our-tech-grid {
    gap: 1rem;
  }
}

/* Additional Mobile UX Improvements */
@media (max-width: 768px) {
  /* Improve touch targets */
  .cta-btn,
  .nav-links li a,
  .footer-links a,
  .footer-contact a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Improve text readability on mobile */
  p, li {
    line-height: 1.6;
  }
  
  /* Better spacing for mobile */
  .hero-center-content,
  .section-title,
  .intro-text,
  .closing-text {
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Better button sizing for mobile */
  .cta-btn {
    min-width: 120px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Even better touch targets for small screens */
  .cta-btn {
    min-height: 48px;
    font-size: 1rem;
  }
  
  /* Reduce font sizes for better fit */
  h1 {
    font-size: 1.8rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.2rem !important;
  }
  
  /* Better spacing for very small screens */
  .container {
    padding: 0 0.75rem;
  }
  
  /* Optimize grid layouts for very small screens */
  .provide-grid,
  .services-grid,
  .how-steps-modern,
  .industries-grid,
  .why-matcom-grid,
  .testimonials-grid,
  .our-tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Account Page Mobile Styles */
@media (max-width: 768px) {
  /* Page Hero Mobile Styles */
  .page-hero {
    padding: 2.5rem 0 2rem 0;
  }
  
  .page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .page-hero .page-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* Features Section Mobile */
  .features {
    padding: 2rem 0 1.5rem 0;
  }
  
  .features h2.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .features .page-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .features-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .feature-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
  
  /* Emphasis Section Mobile */
  .emphasis {
    padding: 2rem 0 1.5rem 0;
  }
  
  .emphasis h2.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .emphasis .page-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .emphasis-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .emphasis-item {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 1rem;
  }
  
  .emphasis-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .emphasis-item span {
    font-size: 0.9rem;
  }
  
  /* Services Section Mobile */
  .services {
    padding: 2rem 0 1.5rem 0;
  }
  
  .services h2.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .services-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
  
  /* How It Works Section Mobile */
  .how-it-works {
    padding: 2rem 0 1.5rem 0;
  }
  
  .how-it-works h2.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .how-it-works .how-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .how-steps-modern {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .how-step-modern {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
  
  .how-step-modern h4 {
    font-size: 1.1rem;
  }
  
  .how-step-modern p {
    font-size: 0.95rem;
  }
  
  /* Why Choose Section Mobile */
  .why-choose {
    padding: 2rem 0 1.5rem 0;
  }
  
  .why-choose h2.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .why-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .why-item {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 1rem;
  }
  
  .why-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Page Hero Small Mobile */
  .page-hero {
    padding: 2rem 0 1.5rem 0;
  }
  
  .page-hero h1 {
    font-size: 1.7rem;
  }
  
  .page-hero .page-intro {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  /* Features Small Mobile */
  .features h2.section-title,
  .emphasis h2.section-title,
  .services h2.section-title,
  .how-it-works h2.section-title,
  .why-choose h2.section-title {
    font-size: 1.6rem;
  }
  
  .features .page-intro,
  .emphasis .page-intro,
  .how-it-works .how-intro {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .features-grid,
  .emphasis-grid,
  .services-grid,
  .how-steps-modern,
  .why-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .feature-card,
  .emphasis-item,
  .service-card,
  .how-step-modern,
  .why-item {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  
  .feature-card h3,
  .service-card h3,
  .how-step-modern h4 {
    font-size: 1rem;
  }
  
  .feature-card p,
  .service-card p,
  .how-step-modern p {
    font-size: 0.9rem;
  }
  
  .emphasis-item h4 {
    font-size: 0.95rem;
  }
  
  .emphasis-item span,
  .why-item span {
    font-size: 0.85rem;
  }
}

/* Account Page What We Provide Mobile Styles */
@media (max-width: 768px) {
  .what-we-provide {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  
  .what-we-provide .intro-text,
  .what-we-provide .closing-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .what-we-provide .provide-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .what-we-provide .provide-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
  }
  
  .what-we-provide .provide-card h3 {
    font-size: 1.1rem;
  }
  
  .what-we-provide .provide-card p {
    font-size: 0.95rem;
  }
  
  .what-we-provide .camera-img {
    margin-bottom: 1.5rem;
  }
  
  .what-we-provide .camera-img img {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .what-we-provide {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  
  .what-we-provide .intro-text,
  .what-we-provide .closing-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .what-we-provide .provide-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .what-we-provide .provide-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .what-we-provide .provide-card h3 {
    font-size: 1rem;
  }
  
  .what-we-provide .provide-card p {
    font-size: 0.9rem;
  }
  
  .what-we-provide .camera-img {
    margin-bottom: 1rem;
  }
  
  .what-we-provide .camera-img img {
    padding: 0 0.5rem;
  }
}

/* Account Page Specific Mobile Improvements */
@media (max-width: 768px) {
  /* Better spacing for account page sections */
  .page-hero,
  .what-we-provide,
  .features,
  .emphasis,
  .services,
  .how-it-works,
  .why-choose {
    margin-bottom: 0;
  }
  
  /* Improve readability of financial content */
  .feature-card p,
  .service-card p,
  .provide-card p {
    line-height: 1.6;
  }
  
  /* Better icon sizing for mobile */
  .feature-card .icon-bg,
  .service-card .icon-bg,
  .emphasis-item .icon-bg,
  .why-item .icon-bg {
    width: 40px;
    height: 40px;
  }
  
  .feature-card .icon-bg svg,
  .service-card .icon-bg svg,
  .emphasis-item .icon-bg svg,
  .why-item .icon-bg svg {
    width: 20px;
    height: 20px;
  }
  
  /* Improve step numbers visibility */
  .how-step-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Even better touch targets for financial content */
  .feature-card,
  .service-card,
  .provide-card {
    min-height: 120px;
  }
  
  /* Smaller icons for very small screens */
  .feature-card .icon-bg,
  .service-card .icon-bg,
  .emphasis-item .icon-bg,
  .why-item .icon-bg {
    width: 36px;
    height: 36px;
  }
  
  .feature-card .icon-bg svg,
  .service-card .icon-bg svg,
  .emphasis-item .icon-bg svg,
  .why-item .icon-bg svg {
    width: 18px;
    height: 18px;
  }
  
  /* Better step number sizing */
  .how-step-number {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  .testimonials, .testimonials-grid, .testimonial-card {
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
}

* {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .footer-brand {
    height: 50px;
    min-height: unset;
    padding: 0.5rem 0 0.25rem 0;
    margin-bottom: 0.25rem;
  }
  .footer-logo {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .footer-brand {
    padding: 0.25rem 0 0.1rem 0;
    margin-bottom: 0.1rem;
    max-height: 150px;
  }
  .footer-logo {
    font-size: 1rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
  }
  .footer-social{
    margin-bottom: 0px;
  }
}
