body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f7fa;
    color: #2c3e50;
  }
  
  header {
    background: #003366;
    color: #fff;
    padding: 1em;
    text-align: center;
  }
  
  nav {
    background: #00509e;
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0.5em 0;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  section {
    padding: 2em;
    max-width: 1000px;
    margin: auto;
  }
  
  .services, .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
  }
  
  .card {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .card h3 {
    color: #007BFF;
  }
  
  a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 0.8em;
    margin: 0.5em 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form button {
    background: #FFC107;
    color: #2c3e50;
    border: none;
    padding: 0.8em 1.5em;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
  }
  
  form button:hover {
    background: #e0a800;
  }
  
  footer {
    background: #003366;
    color: #eee;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
  }
  