    /* --- Scoped iPhone 17 Review Styles --- */
    .iphone17-review {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f7f8fa;
      color: #222;
      line-height: 1.7;
      max-width: 900px;
      background: #fff;
      margin: 40px auto;
      padding: 40px 60px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .iphone17-title {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: #000;
    }

    .iphone17-section-title {
      font-size: 1.6rem;
      margin-top: 40px;
      border-bottom: 2px solid #0071e3;
      display: inline-block;
      padding-bottom: 4px;
      color: #111;
    }

    .iphone17-subtitle {
      margin-top: 30px;
      color: #0071e3;
      font-size: 1.2rem;
    }

    .iphone17-text {
      margin-bottom: 15px;
    }

    .iphone17-list {
      margin: 10px 0 20px 25px;
      padding-left: 0;
    }

    .iphone17-list-item {
      margin-bottom: 6px;
    }

    .iphone17-divider {
      border: none;
      border-top: 1px solid #ddd;
      margin: 30px 0;
    }

    .iphone17-specs {
      background: #f1f5f9;
      padding: 25px;
      border-radius: 10px;
    }

    .iphone17-pros-cons {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 25px;
    }

    .iphone17-pros, .iphone17-cons {
      flex: 1;
      background: #f9fafb;
      border-left: 4px solid;
      border-radius: 10px;
      padding: 20px;
    }

    .iphone17-pros {
      border-color: #22c55e;
    }

    .iphone17-cons {
      border-color: #ef4444;
    }

    .iphone17-footer {
      text-align: center;
      margin-top: 40px;
      font-style: italic;
      color: #555;
    }

    @media (max-width: 700px) {
      .iphone17-review {
        padding: 25px;
      }
      .iphone17-pros-cons {
        flex-direction: column;
      }
    }