/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
  }
  
  /* Container Styling */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #112240;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  
  /* Intro Section Styling */
  .intro h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #64ffda;
  }
  
  .intro p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
  
  /* Service Section Styling */
  .service {
    margin-bottom: 40px;
  }
  
  .service h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #64ffda;
    border-bottom: 3px solid #64ffda;
    padding-bottom: 10px;
  }
  
  .service p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .service ul {
    list-style-type: disc;
    margin-left: 30px;
  }
  
  .service li {
    margin-bottom: 10px;
  }
  
  /* Call to Action Section Styling */
  .call-to-action {
    text-align: center;
    margin-top: 40px;
  }
  
  .call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #64ffda;
  }
  
  .call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .call-to-action .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: #64ffda;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .call-to-action .btn:hover {
    background: #4db6ac; /* Slightly darker shade on hover */
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .intro h1 {
      font-size: 2rem;
    }
  
    .intro p {
      font-size: 1rem;
    }
  
    .service h2 {
      font-size: 1.6rem;
    }
  
    .service p {
      font-size: 1rem;
    }
  
    .call-to-action h2 {
      font-size: 1.6rem;
    }
  
    .call-to-action p {
      font-size: 1rem;
    }
  
    .call-to-action .btn {
      font-size: 1rem;
      padding: 8px 16px;
    }
  }
  