* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 8%;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.logo {
  color: #0c1f4a;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-img {
  height: 40px;
  max-width: 290px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0c1f4a;
}
.nav-links a.active {
  color: #0c1f4a;
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
}
.hero {
  background: linear-gradient(135deg, #0a1a3d 0%, #0c1f4a 60%, #162d6b 100%);
  color: white;
  padding: 160px 8% 120px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 150, 46, 0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: 0;
  left: 5%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  to bottom,
  rgba(10, 26, 61, 0.45) 0%,
  rgba(12, 31, 74, 0.55) 100%
);
  z-index: 0;
}

.hero-tag {
  background-color: rgba(184, 150, 46, 0.18);
  color: #f0d080;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(184, 150, 46, 0.35);
  display: inline-block;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.highlight {
  color: #f0d080;
}

.hero p {
  font-size: 1.15rem;
  color: #b8c8e8;
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.btn {
  background-color: #b8962e;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #9e7e25;
  box-shadow: 0 0 24px rgba(184,150,46,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #f0d080;
  color: #f0d080;
  transform: translateY(-2px);
}

/* Stats */
.stats {
  background: #0c1f4a;
  padding: 64px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid #b8962e;
  border-bottom: 1px solid #1e3a6a;
}

.stat-item {
  text-align: center;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f0d080;
  margin-bottom: 8px;
}

.stat-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.services {
  background: #f1f4f9;
  padding: 120px 8%;
  text-align: center;
}

.services-header {
  margin-bottom: 64px;
}

.services-header .hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #e8eef8;
  color: #0c1f4a;
  border: 1px solid #c8d4ec;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.highlight-dark {
  color: #0c1f4a;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(12,31,74,0.05);
}

.service-card:hover {
  border-color: #b8962e;
  box-shadow: 0 8px 24px rgba(12,31,74,0.08);
}

.service-card.featured {
  background: linear-gradient(135deg, #0a1a3d, #0c1f4a);
  border-color: #0c1f4a;
  box-shadow: 0 8px 32px rgba(12,31,74,0.25);
}

.service-card.featured h3,
.service-card.featured p {
  color: #ffffff;
}

.service-card.featured .card-link {
  color: #f0d080;
  background: rgba(240, 208, 128, 0.12);
  border-color: rgba(240, 208, 128, 0.45);
}
.service-card.featured .card-link:hover {
  background: #f0d080;
  color: #0c1f4a;
  border-color: #f0d080;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0c1f4a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(184, 150, 46, 0.08);
  border: 1px solid rgba(184, 150, 46, 0.35);
  animation: cardLinkGlow 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.card-link:hover {
  background: #b8962e;
  color: #ffffff;
  border-color: #b8962e;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 6px 20px rgba(184, 150, 46, 0.5);
}

@keyframes cardLinkGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 150, 46, 0); }
  50% { box-shadow: 0 0 14px 2px rgba(184, 150, 46, 0.35); }
}

.contact {
  background-color: #ffffff;
  padding: 120px 8%;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .hero-tag {
  display: inline-block;
  margin-bottom: 24px;
  background-color: #e8eef8;
  color: #0c1f4a;
  border: 1px solid #c8d4ec;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-left p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info li {
  color: #475569;
  font-size: 0.95rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-right input,
.contact-right textarea {
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #f8fafc;
  color: #0f172a;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #94a3b8;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #0c1f4a;
  background-color: #ffffff;
}

.contact-right .btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.footer {
  background-color: #0a1a3d;
  padding: 80px 8% 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #4a6080;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #4a6080;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #f0d080;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1a2d50;
  padding-top: 28px;
  color: #4a6080;
  font-size: 0.85rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

/* About Us */
.about {
  background: #f0f4f8;
  padding: 120px 8%;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .hero-tag {
  display: inline-block;
  margin-bottom: 24px;
  background-color: #e8eef8;
  color: #0c1f4a;
  border: 1px solid #93a8c8;
  box-shadow: 0 4px 20px rgba(12,31,74,0.12);
}

.about-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;  
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-left p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: #e8eef8;
  border: 1px solid #93a8c8;
  color: #0c1f4a;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(12,31,74,0.12);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-right {
  display: flex;
  justify-content: center;
}

.about-stat-card {
  background: #f1f4f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(12,31,74,0.04);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  border-color: #b8962e;
  box-shadow: 0 8px 24px rgba(12,31,74,0.08);
}

.about-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0c1f4a;
  margin-bottom: 8px;
}

.about-stat-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-stat-card.highlight-card {
  background: linear-gradient(135deg, #0a1a3d, #0c1f4a);
  border-color: #0c1f4a;
  grid-column: span 2;
}

.about-stat-card.highlight-card h3,
.about-stat-card.highlight-card p {
  color: #ffffff;
}

.about-stat-card.highlight-card h3 {
  font-size: 2.5rem;
  color: #f0d080;
}

.about-quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0d080;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* About Checklist */
.about-checklist {
  background: #f1f4f9;
  border: 1px solid #93a8c8;
  box-shadow: 0 4px 20px rgba(12,31,74,0.12);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  height: 100%;
}

.about-checklist h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c1f4a;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.about-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-checklist ul li {
  position: relative;
  padding-left: 36px;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.about-checklist ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-checklist ul li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-checklist {
    padding: 28px 22px;
    margin-left: -8px;
    margin-right: -8px;
  }
  .about-checklist ul {
    gap: 18px;
  }
  .about-checklist ul li {
    font-size: 0.95rem;
    align-items: flex-start;
  }
  .about-checklist ul li::before {
    top: 2px;
    transform: none;
  }
  .about-checklist ul li::after {
    top: 6px;
    transform: rotate(45deg);
  }
}

/* How It Works */
.process {
  background: #ffffff;
  padding: 120px 8%;
  text-align: center;
}

.process-header {
  margin-bottom: 64px;
}

.process-header .hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #e8eef8;
  color: #0c1f4a;
  border: 1px solid #c8d4ec;
}

.process h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #0c1f4a;
  border-radius: 20px;
  padding: 40px 28px;
  flex: 1;
  max-width: 300px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(12,31,74,0.08);
}

.process-card:hover {
  transform: translateY(-8px);
  border-top: 3px solid #b8962e;
  box-shadow: 0 20px 40px rgba(12,31,74,0.12);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0c1f4a;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.process-card:hover .process-number {
  color: #b8962e;
  opacity: 0.4;
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.process-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.process-arrow {
  font-size: 2rem;
  color: #b8962e;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .process-grid {
    flex-direction: column;
  }
  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .process-card {
    max-width: 100%;
    width: 100%;
  }
}
/* Why Choose Us */
.why-us {
  background: #f1f4f9;
  padding: 120px 8%;
  text-align: center;
}

.why-header {
  margin-bottom: 64px;
}

.why-header .hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #e8eef8;
  color: #0c1f4a;
  border: 1px solid #c8d4ec;
}

.why-us h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #c8d4e8;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(12,31,74,0.10);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #b8962e;
  box-shadow: 0 20px 40px rgba(12,31,74,0.1);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.why-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  background: #0c1f4a;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(12,31,74,0.3);
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  background: #b8962e;
  transform: translateY(-3px);
}
/* WhatsApp 浮动按钮 */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}
/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 50, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 560px;
  width: 90%;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f4f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.modal-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0c1f4a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-section ul li {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-section p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-highlight {
  background: #f1f4f9;
  border-left: 3px solid #b8962e;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-box .btn {
  width: 100%;
  text-align: center;
  padding: 14px;
  border: none;
  cursor: pointer;
  display: block;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 5%; }
  .nav-links { display: none; }
  .hero { padding: 120px 5% 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 48px 5%; }
  .stat-item { border-right: none; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }
  .services { padding: 80px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .contact { padding: 80px 5%; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
/* Logo */
.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  height: 150px;
  max-width: 380px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  margin-top: -60px;
}
/* Mobile overflow fix */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .why-card {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0 auto 20px auto !important;
    padding: 24px !important;
}
  .why-us {
    padding: 60px 20px !important;
}


  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .about-checklist {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
  }

  .footer-brand {
    width: 100% !important;
  }
}