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

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8f9fa;
      color: #2d3748;
  }

  a {
      text-decoration: none;
  }

  /* NAVBAR */
  .navbar-modern {
      padding: 1.2rem 0;
      background: transparent;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 100;
      animation: slideDown 0.6s ease-out;
      transition: background-color 0.25s ease, box-shadow 0.25s ease;
  }

  .navbar-modern.navbar-scrolled {
      background: #fff;
      box-shadow: 0 8px 24px rgba(15, 108, 123, 0.12);
  }

  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
  }

  .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 2px solid #d9e2ec;
      border-radius: 12px;
      background: #fff;
      color: #0F6C7B;
      cursor: pointer;
      flex: 0 0 auto;
  }

  .nav-toggle:hover {
      border-color: #0F6C7B;
  }

  .nav-toggle-icon {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
      content: '';
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
  }

  .nav-toggle-icon::before {
      top: -6px;
  }

  .nav-toggle-icon::after {
      top: 6px;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 24px;
      font-weight: 700;
      color: #2d3748;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .logo:hover {
      color: #0F6C7B;
  }

  .brand-support {
      color: #0F6C7B;
  }

  .logo-icon {
      width: 36px;
      height: 36px;
      background: #0F6C7B;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
  }

  .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
  }

  .nav-links a {
      color: #4a5568;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      position: relative;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #0F6C7B;
      transition: width 0.3s ease;
  }

  .nav-links a:hover {
      color: #0F6C7B;
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .nav-buttons {
      display: flex;
      gap: 1rem;
  }

  .nav-btn {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
  }

  .nav-btn-secondary {
      color: #4a5568;
      background: transparent;
      border: 2px solid #4a5568;
  }

  .nav-btn-secondary:hover {
      background: #4a5568;
      color: white;
      transform: translateY(-2px);
  }

  .nav-btn-primary {
      background: #0F6C7B;
      color: white;
  }

  .nav-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px #0F6C7B;
  }

  /* HERO SECTION */
  .hero-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      animation: fadeIn 0.8s ease-out;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .hero-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
      animation: slideUp 0.8s ease-out 0.2s both;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: #1a202c;
  }

  .hero-title .highlight {
      background: #0F6C7B;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-subtitle {
      font-size: 16px;
      color: #718096;
      line-height: 1.6;
      max-width: 90%;
  }

  .search-container {
      display: flex;
      gap: 10px;
      animation: slideUp 0.8s ease-out 0.3s both;
  }

  .search-box {
      flex: 1;
      display: flex;
      align-items: center;
      background: white;
      border-radius: 12px;
      border: 2px solid #e2e8f0;
      padding: 12px 18px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .search-box:focus-within {
      border-color: #0F6C7B;
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
  }

  .search-box input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 14px;
      font-family: inherit;
  }

  .search-box input::placeholder {
      color: #cbd5e0;
  }

  .search-btn {
      background: #0F6C7B;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .search-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  }

  .cta-buttons {
      display: flex;
      gap: 15px;
      animation: slideUp 0.8s ease-out 0.4s both;
  }

  .btn-primary-cta {
      flex: 1;
      padding: 14px 30px;
      background: #0F6C7B;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .btn-primary-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
  }

  .btn-primary-cta:hover::before {
      left: 100%;
  }

  .btn-primary-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
  }

  .btn-secondary-cta {
      flex: 1;
      padding: 14px 30px;
      background: white;
      color: #4a5568;
      border: 2px solid #0F6C7B;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .btn-secondary-cta:hover {
      background: #4a5568;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
  }

  .hero-image {
      position: relative;
      animation: slideUp 0.8s ease-out 0.3s both;
  }

  .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
  }

  .hero-image:hover img {
      transform: translateY(-10px);
      box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
  }

  .image-badge {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: white;
      padding: 15px 25px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      animation: bounce 2s ease-in-out infinite;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  .image-badge-number {
      font-size: 24px;
      font-weight: 700;
      color: #0F6C7B;
  }

  .image-badge-text {
      font-size: 12px;
      color: #718096;
      margin-top: 5px;
  }

  /* FEATURES SECTION */
  .features-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      animation: slideUp 0.8s ease-out 0.5s both;
  }

  .section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 50px;
      color: #1a202c;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }

  .feature-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
      animation: slideUp 0.6s ease-out forwards;
  }

  .feature-card:nth-child(1) {
      animation-delay: 0.6s;
  }

  .feature-card:nth-child(2) {
      animation-delay: 0.7s;
  }

  .feature-card:nth-child(3) {
      animation-delay: 0.8s;
  }

  .feature-card:nth-child(4) {
      animation-delay: 0.9s;
  }

  .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      background: #0F6C7B;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      margin-bottom: 15px;
  }

  .feature-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a202c;
  }

  .feature-text {
      font-size: 14px;
      color: #718096;
      line-height: 1.6;
  }

  /* SOCIAL ICONS */
  .social-section {
      text-align: center;
      padding: 40px 20px;
      border-top: 1px solid #e2e8f0;
      margin-top: 40px;
  }

  .social-title {
      font-size: 14px;
      font-weight: 600;
      color: #718096;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
  }

  .social-icon {
      width: 50px;
      height: 50px;
      background: white;
      border: 2px solid #e2e8f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0F6C7B;
      font-size: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .social-icon:hover {
      background: #0F6C7B;
      color: white;
      transform: translateY(-5px);
      border-color: #0F6C7B;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
      .navbar-container {
          flex-wrap: wrap;
          align-items: flex-start;
      }

      .nav-toggle {
          display: inline-flex;
      }

      .nav-links,
      .nav-buttons {
          display: none;
          width: 100%;
      }

      .navbar-modern.nav-open .nav-links,
      .navbar-modern.nav-open .nav-buttons {
          display: flex;
      }

      .nav-links {
          flex-direction: column;
          gap: 1rem;
          padding-top: 8px;
      }

      .nav-buttons {
          flex-direction: column;
          gap: 0.5rem;
          padding-bottom: 6px;
      }

      .hero-section {
          grid-template-columns: 1fr;
          padding: 60px 20px;
          gap: 40px;
      }

      .hero-title {
          font-size: 36px;
      }

      .search-container {
          flex-direction: column;
      }

      .cta-buttons {
          flex-direction: column;
      }

      .hero-image {
          order: -1;
      }

      .image-badge {
          display: none;
      }

      .features-grid {
          grid-template-columns: 1fr;
      }

      .section-title {
          font-size: 28px;
      }
  }
