
    :root {
      --primary: #1a5276;
      --secondary: #3498db;
      --accent: #f39c12;
      --light: #f8f9fa;
      --dark: #2c3e50;
      --success: #27ae60;
    }
    
    /* Accessibility improvements */
    :focus {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    
    body {
      line-height: 1.6;
      color: #333;
      background-color: var(--light);
    }
    
    header {
      background-color: var(--primary);
      color: white;
      padding: 1rem 0;
      text-align: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .logo i {
      font-size: 2rem;
    }
    .logo-img {
            max-width: 80%;
            max-height: 250px;
            width: auto;
            height: auto;
            display: block;
    }
    nav {
      background-color: var(--dark);
      padding: 0.5rem 0;
    }
    
    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
    }
    
    nav li {
      margin: 0 1rem;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 0.5rem;
      transition: color 0.3s;
    }
    
    nav a:hover {
      color: var(--accent);
    }
    
    .hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/400');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 5rem 1rem;
      text-align: center;
    }
    
    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1.25rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--accent);
      color: white;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    
    .btn:hover {
      background-color: #e67e22;
    }
    
    section {
      padding: 4rem 1rem;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      color: var(--primary);
    }
    
    .services {
      background-color: white;
    }
    
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .service-card {
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .service-card i {
      font-size: 2.5rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }
    
    .service-card h3 {
      margin-bottom: 1rem;
      color: var(--dark);
    }
    
    .about {
      background-color: var(--light);
    }
    
    .about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
    }
    
    .about-text {
      flex: 1;
      min-width: 300px;
    }
    
    .about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    
    .about-image img {
      max-width: 100%;
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact {
      background-color: white;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .contact-info, .contact-form {
      padding: 1.5rem;
    }
    
    .contact-info {
      background-color: var(--primary);
      color: white;
      border-radius: 5px;
    }
    
    .contact-info h3 {
      margin-bottom: 1.5rem;
    }
    
    .contact-info p {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    label {
      font-weight: 500;
    }
    
    input, textarea, select {
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      width: 100%;
      font-size: 1rem;
    }
    
    input:focus, textarea:focus, select:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.25);
    }
    
    button {
      background-color: var(--success);
      color: white;
      padding: 0.75rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    
    button:hover {
      background-color: #219653;
    }
    
    footer {
      background-color: var(--dark);
      color: white;
      text-align: center;
      padding: 2rem 0;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      padding: 0 1rem;
    }
    
    .footer-info, .footer-links, .footer-social {
      flex: 1;
      min-width: 250px;
    }
    
    .footer-info h3, .footer-links h3, .footer-social h3 {
      margin-bottom: 1rem;
      color: var(--accent);
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-icons a {
      color: white;
      font-size: 1.5rem;
      transition: color 0.3s;
    }
    
    .social-icons a:hover {
      color: var(--accent);
    }
    
    .copyright {
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: center;
      }
      
      nav li {
        margin: 0.5rem 0;
      }
      
      .hero {
        padding: 3rem 1rem;
      }
      
      .hero h2 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      section {
        padding: 2rem 1rem;
      }
      
      .section-title {
        margin-bottom: 2rem;
      }
      
      .service-card {
        padding: 1rem;
      }
      
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-social .social-icons {
        justify-content: center;
      }
      
      .contact-info, .contact-form {
        padding: 1rem;
      }
    }
    
    /* Additional tweaks for very small mobile screens */
    @media (max-width: 480px) {
      header {
        padding: 0.75rem 0;
      }
      
      .logo {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .hero h2 {
        font-size: 1.75rem;
      }
      
      .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
      
      .service-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
    }