body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f7f9fc;
    color: #1f2933;
  }
  
  .header {
    text-align: center;
    padding: 60px 20px;
    background: #0a2a43;
    color: white;
  }
  
  .pricing-section {
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: 60px 20px;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background: white;
    border-radius: 8px;
    width: 300px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
  }
  
  .featured {
    border: 2px solid #0a2a43;
  }
  
  .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0a2a43;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 12px;
  }
  
  .price {
    font-size: 36px;
    margin: 10px 0;
    color: #0a2a43;
  }
  
  .price span {
    font-size: 16px;
  }
  
  .ideal {
    font-size: 14px;
    color: #6b7280;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0a2a43;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background: #08324f;
  }
  
  .addons {
    background: white;
    padding: 50px 20px;
    text-align: center;
  }
  
  .addon-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .addon {
    background: #f1f5f9;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 12px;
    color: #6b7280;
  }
  