  
  :root {
      --verde: #23219c; /* albastru  */
      --albastru: #feda4c;  /* galben  */
      --detaliu: #7f97aa;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f7fa;
      color: #333;
    }

    .section {
      display: flex;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .left {
      flex: 1 1 400px;
    }

    .left img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .icon-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .icon-box {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 20px;
      border-radius: 8px;
      font-weight: 600;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .icon-box img {
      width: 70px;
      height: 70px;
    }

    .icon-blue {
      background-color: var(--albastru);
      color: white;
    }

    .icon-green {
      background-color: var(--verde);
      color: black;
    }

    .right {
      flex: 1 1 500px;
    }

    .right h2 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    .right p {
      color: var(--detaliu);
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .right ul {
      padding-left: 20px;
      margin: 20px 0;
    }

    .right ul li {
      margin-bottom: 10px;
      position: relative;
      color: #333;
      font-weight: 500;
    }

    .right ul li::before {
      content: "✓";
      color: var(--verde);
      margin-right: 8px;
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
  .section {
    flex-direction: column-reverse;
    padding: 20px 15px;
  }

  .right h2 {
    font-size: 24px;
    margin: 20px 0 15px 0;
    line-height: 1.3;
    color: #222;
  }

  .right p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .right ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .right ul li {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .icon-box {
    font-size: 15px;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 10px;
  }

  .icon-box img {
    width: 42px;
    height: 42px;
  }
}
