.methodology-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #1e1e1e;
  }
  
  .methodology-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5096d3;
  }
  
  .overview {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .step-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }
  
  .step-card h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .step-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  
  .step-card table th,
  .step-card table td {
    border: 1px solid #ccc;
    padding: 0.8rem;
    text-align: left;
  }
  
  .step-card table th {
    background-color: #5096d3;
    color: #fff;
  }
  
  .step-card table td {
    background-color: #f0f8ff;
  }
  
  .conclusion {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #333;
  }
  