/* === Base Styles === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1117;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h5 {
    font-weight: 600;
  }
  
  p {
    color: #d0d0d0;
  }
  
  /* === Hero Section === */
  .hero {
    height: 100vh;
    background: linear-gradient(to right top, #0f2027, #203a43, #2c5364);
    padding: 3rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: #c9d1d9;
  }
  
  .btn-primary {
    background-color: #238636;
    border-color: #238636;
  }
  
  .btn-primary:hover {
    background-color: #2ea043;
    border-color: #2ea043;
  }
  
  /* === Card Customization === */
  .card {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-title {
    color: #58a6ff;
  }
  
  .card-text {
    color: #d1d5da;
  }
  
  /* === Section Styling === */
  section {
    padding: 4rem 0;
  }
  
  .bg-light {
    background-color: #161b22 !important;
  }
  
  .bg-dark {
    background-color: #0d1117 !important;
  }
  
  footer {
    background-color: #010409;
  }
  
  footer small {
    color: #8b949e;
  }
  