body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
   }
  
   .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
   }
  
   header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
   }
  
   header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
   }
  
   .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50; /* Dark blue */
   }
  
   nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
   }
  
   nav ul li {
    margin-left: 20px;
   }
  
   nav ul li a {
    text-decoration: none;
    color: #555; /* Grey */
    font-weight: 500;
    transition: color 0.3s ease;
   }
  
   nav ul li a:hover,
   nav ul li a.active {
    color: #3498db; /* Blue */
   }
  
   .hero {
    background-color: #e7f3ff; /* Light blue */
    padding: 80px 0;
    text-align: center;
   }
  
   .hero .container {
    max-width: 800px;
   }
  
   .hero h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
   }
  
   .hero p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .hero-buttons a {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
   }
  
   .button.primary {
    background-color: #3498db; /* Blue */
    color: #fff;
    margin-right: 10px;
   }
  
   .button.secondary {
    background-color: #f4f4f4;
    color: #555;
    border: 1px solid #ddd;
   }
  
   .button.primary:hover {
    background-color: #2980b9;
   }
  
   .button.secondary:hover {
    background-color: #e0e0e0;
    color: #333;
   }
  
   .services-highlight {
    padding: 60px 0;
    background-color: #fff;
   }
  
   .services-highlight h2 {
    font-size: 2em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
   }
  
   .service-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Hover effect for homepage */
   }
  
   .service-card:hover {
    transform: translateY(-3px); /* Bounce on hover for homepage */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly enhance shadow on hover for homepage */
   }
  
   .service-card h3 {
    color: #3498db;
    margin-bottom: 10px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .service-card p {
    color: #555;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .page-header {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
   }
  
   .page-header h2 {
    font-size: 2.2em;
    color: #2c3e50;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .about-content {
    padding: 60px 0;
    background-color: #fff;
   }
  
   .about-content p {
    color: #555;
    margin-bottom: 20px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .about-content h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
   }
  
   .team-member {
    text-align: center;
   }
  
   .team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    display: block;
   }
  
   .team-member h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .team-member .title {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 10px;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   .team-member .bio {
    color: #555;
    font-size: 0.95em;
    word-wrap: break-word; /* Ensure words break properly */
   }
  
   /* Styling for the Services Page */
   .services-page-content {
    padding: 60px 0;
    background-color: #f9f9f9; /* Slightly lighter background */
   }
  
   .services-page-content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Creates responsive columns - Increased min-width */
    gap: 30px;
    padding: 40px;
   }
  
   .service-category {
    margin-bottom: 40px;
    padding: 30px; /* Increased padding */
   }