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

body {
  font-family: "Helvetica", "Arial", sans-serif;
  background: #001f3f;
  color: #ffffff;
  scroll-behavior: smooth; /* Smooth scrolling for better UX */
}

.hero {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(9, 109, 213, 0.4), rgba(9, 109, 213, 0.4)),
    url("1.jpg") center/cover no-repeat;
  padding: 24px 7vw 40px;
  display: flex;
  flex-direction: column;
}

/* Main hero content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

.hero-text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-weight: 300;
  gap: 16px;
  flex-wrap: wrap;
  line-height: 1.2;
  margin-bottom: 24px;
}

.logo-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
  max-width: 520px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #096dd5;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Social buttons */
.socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* New About Us Section Styles */
.about-us {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%); /* Light gradient for individuality */
  color: #001f3f; /* Dark text for contrast */
  padding: 60px 7vw;
  min-height: 110vh; /* Ensures it's tall enough to scroll into view */
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 160px;
  text-align: center;
}

.about-heading {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: #333; /* Matches hero button color for branding */
}

.about-intro {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: justify;
}

.expandable-content {
  display: none; /* Hidden by default */
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: justify; /* Left-align for readability */
}

.btn-toggle {
  align-items: center;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #096dd5;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-toggle:hover {
  background-color: #075bb8;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .subtitle {
    font-size: 20px;
  }

  .about-us {
    padding: 40px 5vw;
  }

  .about-heading {
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-intro {
    font-size: 20px;
  }

  .expandable-content {
    font-size: 22px;
  }
}
/* ... (Your existing CSS remains unchanged) ... */

/* New Advantages of the Waitlist Section Styles */
.advantages {
  background: #ffffff; /* Changed to white background as requested */
  color: #001f3f;
  padding: 60px 7vw;
  min-height: 100vh;
}

.advantages-container {
  max-width: 2000px; /* Adjustable: Change this value to manipulate overall container width */
  margin: 0 auto;
  text-align: center;
}

.advantages-heading {
  font-size: 55px;
  font-weight: 600;
  max-width: 1000px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  color: #333;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
  gap: 20px;
}

.advantage-item {
  /* Adjustable sizes: Change width and height here to manipulate container sizes */
  width: 100%; /* Full width within grid cell; adjust if needed (e.g., to 80% for smaller) */
  height: 400px; /* Auto height based on content; set to a fixed value like 300px if desired */
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* To reduce text width: Add max-width to inner elements */
}

.advantage-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 80px;
  color: #096dd5;
  max-width: 90%; /* Adjustable: Reduces text width; change to 80%, 100%, etc. */
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
}

.advantage-item p {
  font-size: 20px;
  font-weight: 100;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  max-width: 90%; /* Adjustable: Reduces text width; change to 80%, 100%, etc. */
  margin-left: auto;
  margin-right: auto;
}

/* Styling top two items differently from bottom two in 2x2 grid */
.advantage-item:nth-child(1),
.advantage-item:nth-child(2) {
  /* Top two: Example difference - lighter background or border; customize as needed */
  background: #C8E0FE; /* Lighter background for top items */
  border-color: #cccccc;
}

.advantage-item:nth-child(3),
.advantage-item:nth-child(4) {
  /* Bottom two: Different styling, e.g., darker or same as original */
  background: #E5F0FE; /* Keep original or adjust */
  border-color: #e0e0e0;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* New Who ZIRA is For Section Styles */
.who-for {
  background: linear-gradient(135deg, #f7f9fc 0%, #e1e8ed 100%); /* Subtle gray gradient */
  color: #ffffff;
  padding: 60px 7vw;
  min-height: 50vh;
}

.who-for-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.who-for-heading {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3x2 grid */
  gap: 20px;
}

.who-for-item {
  position: relative;
  /* Adjustable sizes: Change width and height here to manipulate container sizes */
  width: 100%; /* Full width within grid cell; adjust if needed (e.g., to 80% for smaller) */
  height: 300px; /* Adjustable: Change this value to adjust height (e.g., 250px for taller) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-for-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 31, 63, 0.4); /* Semi-transparent dark overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: wrap;
  text-align: center;
}

.overlay h3 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  /* ... (Your existing media queries remain unchanged) ... */

  .advantages-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }

  .who-for-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }

  .advantages-heading,
  .who-for-heading {
    font-size: 40px;
  }

  .advantage-item,
  .who-for-item {
    padding: 20px;
  }

  .who-for-item {
    height: 200px; /* Shorter on mobile */
  }
}