/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #c2e9fb, #a1c4fd);
    color: #333;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo h1 {
    color: #007BFF;
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #007BFF;
  }
  
  nav ul li .btn {
    border-radius: 5px;
    color: white !important;
    text-transform: uppercase;
  }
  
  /* About Section */
  .about-section {
    padding: 80px 50px;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .about-content {
    flex: 1;
    max-width: 600px;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1b1b1b;
  }
  
  .about-content h2 span {
    color: #007BFF;
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .learn-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #0056b3;
  }
  
  /* Image */
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    header {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .about-content, .about-image {
      max-width: 100%;
    }
  }
  