:root {
  --primary-blue: #0A192F;
  --accent-green: #5ab281;
  /* Matched to your screenshot */
  --light-bg: #F3F4F6;
}

.main-body {
  body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-top: 76px;
    /* Space for fixed navbar */
  }

  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #112240 100%);
    color: white;
    padding: 100px 0 80px;
  }

  .hero-title {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 20px;
  }

  /* --- UPDATED SEARCH BAR FROM SCREENSHOT --- */
  .search-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 60px;
    /* Perfectly round edges */
    padding: 8px;
    /* Creates the even white border around the button */
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .search-container input {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 15px 20px 15px 25px;
    font-size: 1.05rem;
    color: #333;
  }

  .search-container input::placeholder {
    color: #6b7280;
  }

  /* Removes browser default focus outlines */
  .search-container input:focus {
    outline: none;
    box-shadow: none;
  }

  .btn-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--accent-green);
    color: white;
    border: none;
    border-radius: 50px;
    /* Keeps button perfectly round inside */
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    /* Prevents text stacking */
  }

  .btn-verify:hover {
    background-color: #499b6d;
    color: white;
  }

  /* ------------------------------------------ */

  /* Trust Badges */
  .trust-badges img {
    height: 35px;
    margin: 0 15px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
  }

  .trust-badges img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Features & Icons */
  .icon-box {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
  }
}