<style>
    :root {
      --primary-blue: #4a90e2;
      --light-blue: #e8f1fa;
      --dark-blue: #2c5282;
      --light-grey: #f5f7fa;
      --medium-grey: #d1d5db;
      --dark-grey: #4b5563;
      --white: #ffffff;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    
    body {
      background-color: var(--light-grey);
      color: var(--dark-grey);
      line-height: 1.6;
    }
    
    header {
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 1rem 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--white);
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 2rem;
    }
    
    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.3s;
    }
    
    .nav-links a:hover {
      opacity: 0.8;
    }
    
    .hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/api/placeholder/1200/600');
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
    }
    
    .hero-content {
      max-width: 800px;
      padding: 2rem;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    
    .btn:hover {
      background-color: var(--dark-blue);
    }
    
    .services {
      padding: 4rem 0;
      background-color: var(--white);
    }
    
    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 3rem;
      color: var(--dark-blue);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .service-card {
      background-color: var(--light-blue);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
    }
    
    .service-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .service-content {
      padding: 1.5rem;
    }
    
    .service-content h3 {
      margin-bottom: 1rem;
      color: var(--dark-blue);
    }
    
    .about {
      padding: 4rem 0;
      background-color: var(--light-grey);
    }
    
    .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    
    .about-img {
      flex: 1;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .about-img img {
      width: 100%;
      height: auto;
    }
    
    .about-text {
      flex: 1;
    }
    
    .testimonials {
      padding: 4rem 0;
      background-color: var(--light-blue);
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .testimonial-card {
      background-color: var(--white);
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 1rem;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: var(--dark-blue);
    }
    
    .contact {
      padding: 4rem 0;
      background-color: var(--white);
    }
    
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    
    .form-input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--medium-grey);
      border-radius: 5px;
    }
    
    textarea.form-input {
      height: 150px;
      resize: vertical;
    }
    
    .form-btn {
      background-color: var(--primary-blue);
      color: var(--white);
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    
    .form-btn:hover {
      background-color: var(--dark-blue);
    }
    
    footer {
      background-color: var(--dark-grey);
      color: var(--white);
      padding: 2rem 0;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    
    .footer-col {
      flex: 1;
      min-width: 250px;
      margin-bottom: 1.5rem;
    }
    
    .footer-col h4 {
      margin-bottom: 1rem;
      color: var(--light-blue);
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col ul li {
      margin-bottom: 0.5rem;
    }
    
    .footer-col a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-col a:hover {
      color: var(--light-blue);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 2rem;
      padding-top: 1.5rem;
      text-align: center;
    }
    
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .about-content {
        flex-direction: column;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
    }
  </style>