/* Resetowanie stylów domyślnych */
<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --dark-bg: #121212;
      --darker-bg: #0a0a0a;
      --card-bg: #1e1e1e;
      --accent-blue: #1e90ff;
      --accent-light: #4da6ff;
      --text-light: #ffffff;
      --text-gray: #b0b0b0;
      --transition: all 0.4s ease;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--dark-bg);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover {
      color: var(--accent-light);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 60px;
      color: var(--text-light);
      text-align: center;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent-blue);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-align: center;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      background: var(--accent-blue);
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
      background: var(--accent-light);
    }

    .btn-secondary {
      background: transparent;
      color: var(--accent-blue);
      border: 2px solid var(--accent-blue);
    }

    .btn-secondary:hover {
      background: rgba(30, 144, 255, 0.1);
    }
    ee-plan {
  background: linear-gradient(180deg, rgba(30,30,30,0.6), rgba(20,20,20,0.7));
  border: 1px solid rgba(77,166,255,0.06);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(2,12,27,0.6);
  color: var(--text-light);
}

</style>