/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: #f9f9f9;
  }
  
  /* Navigation Menu */
  .navbar {
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li {
    margin-right: 20px;
  }
  
  .nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-list a:hover {
    color: #ff9800;
  }
  
  /* Main Content */
  .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Title */
  .title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
  }
  
  .title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff9800;
    margin: 10px auto 0;
  }
  
  /* Intro Text */
  .intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Services Section */
  .services h2 {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .services ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto; /* Center the list container */
  }
  
  .services li {
    display: flex;
    align-items: center; /* Align checkmark and text */
    font-size: 1.2rem;
    color: #555;
    margin: 10px 0;
  }
  
  .services li::before {
    content: '✔';
    color: #ff9800;
    font-size: 1.2rem;
    margin-right: 10px; /* Space between checkmark and text */
  }
  
  /* Image Section */
  .image-container {
    text-align: center;
    margin: 30px 0;
  }
  
  .service-image {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .service-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Closing Statement */
  .closing {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-top: 20px;
  }
  