   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #f5f7fb;
      color: #1f2937;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #1d4ed8, #4338ca);
      color: white;
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 28px;
      font-weight: 800;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      color: white;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links a:hover {
      opacity: 0.8;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 14px;
      font-weight: 600;
      display: inline-block;
      transition: 0.3s;
      cursor: pointer;
    }

    .btn-primary {
      background: white;
      color: #1d4ed8;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }

    .btn-secondary {
      border: 2px solid white;
      color: white;
    }

    .btn-secondary:hover {
      background: white;
      color: #1d4ed8;
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, #1d4ed8, #4338ca);
      color: white;
      padding: 100px 0;
    }

    .hero-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 60px;
      align-items: center;
    }

    .hero h1 {
      font-size: 58px;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .hero p {
      font-size: 20px;
      color: #dbeafe;
      margin-bottom: 35px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trip-card {
      background: white;
      color: #111827;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .trip-card h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .trip-card .status {
      background: #dcfce7;
      color: #15803d;
      display: inline-block;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .trip-info {
      margin-bottom: 18px;
    }

    .trip-info span {
      color: #6b7280;
      display: block;
      margin-bottom: 5px;
    }

    .progress {
      width: 100%;
      height: 10px;
      background: #e5e7eb;
      border-radius: 30px;
      overflow: hidden;
      margin-top: 10px;
    }

    .progress-bar {
      width: 80%;
      height: 100%;
      background: #2563eb;
    }

    /* Features */
    .section {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title h2 {
      font-size: 46px;
      margin-bottom: 15px;
    }

    .section-title p {
      max-width: 700px;
      margin: auto;
      color: #6b7280;
      font-size: 18px;
    }

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

    .feature-card {
      background: white;
      padding: 35px;
      border-radius: 24px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      transition: 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: #dbeafe;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin-bottom: 25px;
    }

    .feature-card h3 {
      margin-bottom: 15px;
      font-size: 24px;
    }

    .feature-card p {
      color: #6b7280;
    }

    /* Dashboard */
    .dashboard {
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .stat-card {
      padding: 30px;
      border-radius: 20px;
      background: #eff6ff;
    }

    .stat-card h3 {
      font-size: 42px;
      margin-top: 10px;
    }

    .trip-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .trip-item {
      border: 1px solid #e5e7eb;
      padding: 25px;
      border-radius: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .trip-item button {
      background: #1d4ed8;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 600;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #312e81, #1e1b4b);
      color: white;
      text-align: center;
      padding: 100px 20px;
    }

    .cta h2 {
      font-size: 52px;
      margin-bottom: 20px;
    }

    .cta p {
      max-width: 700px;
      margin: auto;
      margin-bottom: 40px;
      color: #c7d2fe;
      font-size: 20px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Footer */
    footer {
      background: #030712;
      color: #9ca3af;
      padding: 60px 0;
    }

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

    .footer-links {
      display: flex;
      gap: 80px;
      flex-wrap: wrap;
    }

    .footer-links h4 {
      color: white;
      margin-bottom: 15px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 42px;
      }

      .section-title h2,
      .cta h2 {
        font-size: 36px;
      }

      .nav-links {
        display: none;
      }

      .trip-item {
        flex-direction: column;
        align-items: flex-start;
      }
    }