/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  /* Global Styles */
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  a {
    text-decoration: none;
  }
  
  /* Header */
  header {
    background: linear-gradient(90deg, #3498db, #2c3e50);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  header h1 {
    font-size: 2.2rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  /* Navigation */
  nav {
    background: #2c3e50;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 20px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav a {
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
  }
  
  nav a:hover {
    background-color: #3498db;
  }
  
  /* Section */
  section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* About */
  .about {
    background: #ecf0f1;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Services */
  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .services .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    width: calc(33.333% - 20px);
  }
  
  .services .card:hover {
    transform: translateY(-10px);
  }
  
  .services .card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
  }
  
  /* Pricing */
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33.333% - 20px);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card .price {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
  }
  
  .pricing-card ul li {
    margin: 8px 0;
    color: #555;
  }
  
  /* Contact */
  .contact {
    background: #ecf0f1;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin-top: 10px;
  }
  
  .social-icons a {
    font-size: 1.5rem;
    color: #2c3e50;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #3498db;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
  }
  
  footer a {
    color: white;
    text-decoration: underline;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #2c3e50;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .services .card,
    .pricing-card {
      width: calc(50% - 20px);
    }
  
    nav a {
      font-size: 0.85rem;
      padding: 8px 12px;
    }
  }
  
  @media (max-width: 600px) {
    .services .card,
    .pricing-card {
      width: 100%;
    }
  
    nav {
      flex-direction: column;
      align-items: center;
    }
  
    nav a {
      width: 100%;
      text-align: center;
      padding: 12px 0;
    }
  
    header h1 {
      font-size: 1.8rem;
    }
  
    header p {
      font-size: 1rem;
    }
  }
  