body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  header {
    background-color: #2e2e86;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    margin: 0;
  }
  
  nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background: linear-gradient(to right, #2e2e86, #4a4acf);
    color: white;
    padding: 100px 40px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero button {
    padding: 12px 25px;
    background-color: #ffce00;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2e2e86;
  }
  
  .services, .contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card h4 {
    margin-top: 0;
    color: #2e2e86;
  }
  
  .projects {
    text-align: center;
    background-color: #f0f0f0;
    padding: 50px;
    border-radius: 10px;
  }
  
  .footer {
    background-color: #2e2e86;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  a.email-link {
    color: #2e2e86;
    font-weight: bold;
    text-decoration: none;
  }
  