* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('pic.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
  
  .hero-content {
    margin-top: 18rem;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  section {
    padding: 60px 0;
    text-align: center;
  }
  
  .about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .why-choose .features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
  }
  
  .why-choose .feature {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
  }
  
  .why-choose .feature:hover {
    transform: translateY(-10px);
  }
  
  .why-choose h2, .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
  }
  
  footer p {
    margin: 0;
  }
  