/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
li{
  list-style: none;
}

  body {
    font-family: 'Arial', sans-serif;
    background-color: #F9F5F0;
    color: #4A4A4A;
    line-height: 1.6;
  }
  
  /* 1. Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #F5E6D3;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav ul {
    display: flex;
    list-style: none;
  }
  
  .nav li {
    margin: 0 15px;
  }
  
  .nav a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 16px;
  }
  
  /* 2. Banner */
  .banner {
    background: url('banner-image.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 120px 0;
    color: white;
  }
  
  .banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn-primary, .btn-secondary {
    background-color: #6A8DAB;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover, .btn-secondary:hover {
    background-color: #F5E6D3;
    color: #6A8DAB;
  }
  
  /* 3. Features Section */
  .features {
    padding: 60px 20px;
    text-align: center;
  }
  
  .features h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .feature-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .feature-card {
    background-color: #FFF5E1;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 16px;
  }
  
  /* 4. Process Section */
  .process {
    padding: 80px 20px;
    text-align: center;
    background-color: #F5E6D3;
  }
  
  .process h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .timeline {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .step {
    background-color: #6A8DAB;
    padding: 20px;
    color: white;
    border-radius: 15px;
    width: 20%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* 5. Security Section */
  .security {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFF5E1;
  }
  
  .security h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .security-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .security-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    max-width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .security-card p {
    font-size: 16px;
  }
  
  /* 6. User Stories */
  .stories {
    background-color: #6A8DAB;
    padding: 60px 20px;
    text-align: center;
    color: white;
  }
  
  .stories h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .carousel {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .story-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* 7. Footer */
  .footer {
    padding: 20px ;
    background-color: #6A8DAB;
    color: white;
    text-align: center;
  }
  
  