@charset "UTF-8";

 body {
      font-family: 'Helvetica Neue', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff8f0;
      color: #333;
    }
    header {
      background: linear-gradient(90deg, #ff9a9e, #fad0c4);
      color: white;
      padding: 1.5em;
      text-align: center;
    }
    main {
      padding: 0 1em;
    }
    section {
      max-width: 960px;
      margin: 2em auto;
      background: #ffffff;
      padding: 2em;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    a {text-decoration: none;}

    h2 {
      color: #ff6f61;
      border-left: 8px solid #ffd166;
      padding-left: 0.5em;
    }
    ul {
      padding-left: 0;
      list-style: none;
    }
    li {
      margin-bottom: 1em;
      padding-left: 2.2em;
      position: relative;
    }
    li::before {
      content: url('https://img.icons8.com/ios-filled/24/4a4a4a/checked--v1.png');
      position: absolute;
      left: 0;
      top: 0.1em;
    }
    .icon {
      width: 30%;
      display: block;
      margin: 0 auto 1em auto;
    }
    .balloon {
      background: #fce4ec;
      border-radius: 10px;
      padding: 1em;
      margin: 1em 0;
      position: relative;
    }
    .balloon::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 20px;
      border: 10px solid transparent;
      border-bottom-color: #fce4ec;
    }
    .image-box {
      text-align: center;
      margin: 1.5em 0;
    }
    .image-box img {
      max-width: 100%;
      border-radius: 12px;
    }
    .table-wrapper {
      overflow-x: auto;
      max-width: 100%;
    }

    table {
      width: 100%;
      min-width: 600px;
      border-collapse: collapse;
      background-color: #fff9f6;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      table-layout: fixed;
    }

    th, td {
      padding: 1em;
      text-align: left;
      border-bottom: 1px solid #f2dcdc;
    }

    th {
      background-color: #ffe4e1;
      color: #333;
      border-right: 1px solid #f2dcdc;
    }

    th:first-child, td:first-child {
      width: 30%;
      border-right: 1px solid #f2dcdc;
    }

    th:last-child, td:last-child {
      width: 70%;
    }
    footer {
      background: #ffb6b9;
      color: white;
      text-align: center;
      padding: 1em;
      margin-top: 3em;
    }

 @media (max-width: 960px) {

    .icon   {width: 50%;}
    }

    @media (max-width: 600px) {
      section {
        padding: 1em;
      }


    }