@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Grey+Qo&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Work Sans', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e9eff1);
    display: flex;
    height: 100vh;
  }
  
  .sidebar {
    background: #2a3d45;
    color: white;
    width: 250px;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .sidebar .logo {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    color: #4ec5d4;
  }
  
  .sidebar-menu {
    list-style-type: none;
  }
  
  .sidebar-menu li {
    margin: 20px 0;
  }
  
  .sidebar-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .sidebar-menu li a:hover {
    background-color: #4ec5d4;
  }
  
  .main-content {
    margin-left: 250px;
    padding: 30px;
    width: 100%;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  header h1 {
    font-size: 3em;
    color: #2a3d45;
    font-weight: 700;
  }
  
  header p {
    font-size: 1.2em;
    color: #7f8c8d;
  }
  
  .features .feature {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .features .feature h3 {
    font-size: 1.8em;
    color: #2980b9;
  }
  
  .features .feature p {
    font-size: 1.1em;
    color: #7f8c8d;
  }
  
  .features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-body h3 {
    font-size: 1.8em;
    color: #2980b9;
    margin-bottom: 15px;
  }
  
  .card-body p {
    font-size: 1.1em;
    color: #7f8c8d;
  }
  
  @media (max-width: 768px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
  
    .main-content {
      margin-left: 0;
      padding: 20px;
    }
  
    .features .feature {
      margin-bottom: 20px;
    }
  }
  
