/* Overall styles remain mostly the same, with a few enhancements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1f1f1f, #2a2a72);
    color: #f4f4f4;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
  
  header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #ccc;
  }
  
  button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #d1422e;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  button:hover {
    background: #b93825;
    transform: scale(1.05);
  }
  
  
  section {
    padding: 4rem 2rem;
    background: #121212;
  }
  
  section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .feature {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 126, 95, 0.1);
  }
  
  .testimonial-slider {
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
  }

  .some {
    text-align: center;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 2;
  }
  
  .contact-info p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
  }
  
  .contact-info .icon {
    font-size: 1.4rem;
  }
  
  .contact-info a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #4dd0e1;
  }
  
  .whatsapp-button {
    background-color: #1ebe57;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .whatsapp-button:hover {
    background-color: #18a74a;
    transform: scale(1.05);
  }
  
  