/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #333; /* Must remain 'color' in CSS for functionality */
    line-height: 1.6;
    padding: 1rem;
  }
  
  /* Header Styling */
  header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  header p {
    font-size: 1rem;
    color: #777;
  }
  
  /* Section Styling */
  section {
    margin-bottom: 2rem;
  }
  
  /* Intro Section */
  .intro {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .intro p {
    margin-bottom: 1.5rem;
  }
  
  /* Services Section */
  .services {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .services h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .services ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  
  .services li {
    margin-bottom: 0.5rem;
  }
  
  /* Why Choose Section */
  .why-choose {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .why-choose h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .why-choose p {
    margin-bottom: 1rem;
  }
  
  /* Placeholder Section */
  .placeholder {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .placeholder h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .placeholder p {
    margin-bottom: 2rem;
  }
  
  /* Button Styling */
  .btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .btn:hover {
    background: #555;
  }
  
  /* Footer Styling */
  footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #555;
  }