/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
  }
  
  #navbar {
    margin-bottom: 20px;
  }
  
  section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  
  #home {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #home h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  #home p {
    font-size: 1.2em;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  #vision, #services, #repair-agents, #customer-needs, #home-service, #sponsors {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #vision h2, #services h2, #repair-agents h2, #customer-needs h2, #home-service h2, #sponsors h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
  }
  
  #vision h2::after, #services h2::after, #repair-agents h2::after, #customer-needs h2::after, #home-service h2::after, #sponsors h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #66a6ff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  #vision p, #services p, #repair-agents p, #customer-needs p, #home-service p, #sponsors p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
  }
  
  #services ul, #customer-needs ul {
    list-style: none;
    padding: 0;
  }
  
  #services li, #customer-needs li {
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #home h1 {
      font-size: 2em;
    }
  
    #home p {
      font-size: 1em;
    }
  
    #vision h2, #services h2, #repair-agents h2, #customer-needs h2, #home-service h2, #sponsors h2 {
      font-size: 1.5em;
    }
  
    #vision p, #services p, #repair-agents p, #customer-needs p, #home-service p, #sponsors p {
      font-size: 1em;
    }
  }