
body {
  font-family: "SF Pro", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  color: #111;
  background: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: white;
  flex-wrap: wrap;
}

.navbar-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
}

.navbar nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #54A4DC;
  font-weight: 500;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
  .navbar nav {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 12px;
  }
  .navbar nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}
.logo {
  height: 60px;
}

.btn {
  background-color: #2291f0;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.outline {
  background: none;
  border: 1px solid #2291f0;
  color: #2291f0;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  flex-wrap: wrap;
  background-image: url('assets/header-section.png');
  background-size: cover;
  background-position: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 480px;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
}

.hero-text {
  max-width: 600px;
  background: rgba(255,255,255,0.85);
  padding: 32px 40px;
  border-radius: 12px;
  margin-left: 60px;   /* Add left margin */
  margin-right: auto;  /* Push content to the left */
  gap: 20px;
}

.hero-text-header {
  font-size: 60px;
  margin: 0 0 20px 0;
}

.hero-text-subheader {
  font-size: 20px;
  margin: 0 0 20px 0;
  margin-bottom: 50px;
}

.hero-buttons {
  text-align: center;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 140px;
  font-size: 1rem;
}

.brands {
  padding: 60px 40px;
  background: #f9f9f9;
  text-align: center;
}

.products {
  padding: 60px 40px;
  background: #ffffff;
  text-align: center;
}

.brand-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.brand-item img {
  height: 360px;
}

.faq {
  background: #f9f9f9;
  padding: 60px 40px;
}

.faq-item {
  margin-bottom: 24px;
}

.footer {
  background: #eee;
 
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .navbar {
    flex-direction: column;
  }
}
.footer {
  background: linear-gradient(90deg, #0a82c2, #0493d4);
  color: white;
  padding: 20px 30px 20px;
  font-size: 14px;
  text-align: left; /* Ensure left alignment */
}

.footer-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  text-align: left;
}


.footer-nav,
.footer-contact {
  margin-bottom: 20px;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid #ffffff44;
  margin-top: 40px;
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  margin-right: 20px;
  text-decoration: none;
  color: white;
}

.footer-contact a {
  color: white;
  text-decoration: none;
}

.social-icons img {
  height: 24px;
  margin-left: 16px;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 24px;
}

.card {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.card-faq {
 
  align-items: center;
  background: linear-gradient(90deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: #d6ecfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.icon img {
  width: 40px;
  height: 40px;
  stroke: #54A4DC;
}

.text h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #111827;
}

.text p {
  margin: 0;
  color: #374151;
  font-size: 1rem;
}