.services-main {
    padding-top: 80px;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: Georgia, serif;
    color: #222;
  }
  
  .services-main h2 {
    font-family: 'Allura', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #800000; /* deep red, elegant */
  }
  
  .services-main p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2rem;
    border-left: 4px solid #800000;
    margin-bottom: 3rem;
  }
  
  .service-list li {
    margin-bottom: 0.7rem;
    padding-left: 0.8rem;
  }
  
  .fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  body{
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #3a2e2a;
    margin: 40px;
    background-color: #f6f0ea; /* softened from #fdf9f6 */
    font-size: 19px;
  }