/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  header .logo img {
    height: 40px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #007BFF;
  }
  
  .hero {
    background: linear-gradient(135deg, #007BFF, #00BFFF);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background: #FFC107;
    color: #333;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #e0a800;
  }
  
  .about, .services, .contact {
    padding: 4rem 0;
    text-align: center;
  }
  
  .services .service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .services .card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .services .card:hover {
    transform: translateY(-10px);
  }
  
  .services .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007BFF;
  }
  
  .services .card p {
    font-size: 1rem;
    color: #666;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 2rem;
  }
  
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #555;
  }
  
  footer {
    background: #007BFF;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 4rem;
  }