/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* White */
    color: #333333; /* Dark Gray for text */
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* General Styles */
  body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* White */
    color: #333333; /* Dark Gray */
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    padding: 20px 0;
    background: rgba(0, 0, 255, 0.3); /* Light Blue */
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0044cc; /* Elegant Blue */
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #0044cc; /* Elegant Blue */
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.1), rgba(255, 255, 255, 0.9)); /* Elegant White & Light Blue */
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0044cc; /* Elegant Blue */
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333333;
    animation: fadeIn 3s ease-in-out;
  }
  
  .cta-button {
    padding: 15px 30px;
    background: rgba(0, 0, 255, 0.1); /* Light Blue */
    border: 2px solid #0044cc; /* Elegant Blue */
    color: #0044cc; /* Elegant Blue */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeIn 4s ease-in-out;
  }
  
  .cta-button:hover {
    background: rgba(0, 0, 255, 0.2); /* Slightly Darker Blue */
    transform: scale(1.05);
  }
  
  /* Footer */
  footer {
    padding: 20px 0;
    background: rgba(0, 0, 255, 0.3); /* Light Blue */
    backdrop-filter: blur(10px);
    text-align: center;
    color: #ffffff;
  }
  
  footer p {
    margin: 0;
    font-size: 14px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 255, 0.2); /* Light Blue */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0044cc; /* Elegant Blue */
    text-transform: uppercase;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #0044cc; /* Elegant Blue */
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0044cc; /* Elegant Blue */
  }
  
  .how-it-works p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.8);
  }
  
  .steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .step {
    background: rgba(0, 0, 255, 0.1); /* Light Blue */
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 250px;
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
  }
  
  .step img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0044cc; /* Elegant Blue */
  }
  
  .step p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
  }
  
  /* Products Section */
  .products {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0044cc; /* Elegant Blue */
  }
  
  .product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .product-card {
    background: rgba(0, 0, 255, 0.1); /* Light Blue */
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0044cc; /* Elegant Blue */
  }
  
  .product-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
  }
  
  /* Footer Styling */
  .footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 255, 0.3); /* Light Blue */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  .footer p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 36px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .steps,
    .product-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .how-it-works h2,
    .products h2 {
      font-size: 2rem;
    }
  }
  