body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: #1e272e;
      color: #f5f6fa;
    }

    .container {
      width: 90%;
      max-width: 900px;
      padding: 30px;
      background-color: #2c3e50;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #f5f6fa;
    }

    .input-fields {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 10px;
    }

    .input-row {
      display: flex;
      align-items: center;
    }

    .label-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .input-fields label {
      font-weight: bold;
      color: #f5f6fa;
      margin-bottom: 5px;
    }

    .input-fields input {
      flex: 1;
      padding: 12px;
      border: 1px solid #4a6572;
      border-radius: 6px;
      box-sizing: border-box;
      background-color: #34495e;
      color: #f5f6fa;
      transition: border-color 0.3s ease;
    }

    .input-fields input:focus {
      border-color: #3498db;
      outline: none;
    }

    .input-fields button {
      flex-basis: 100%;
      background-color: #2ecc71;
      color: white;
      padding: 12px 18px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .input-fields button:hover {
      background-color: #27ae60;
    }

    .policy-sections {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }

    .policy-card {
      flex: 1 1 calc(50% - 25px);
      background-color: #34495e;
      border: 1px solid #4a6572;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .policy-card:hover {
      transform: translateY(-3px);
    }

    .policy-card h2 {
      margin-top: 0;
      color: #f5f6fa;
      border-bottom: 2px solid #4a6572;
      padding-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .policy-card .content {
      max-height: 10em;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding-right: 10px;
      overflow-y: auto;
      line-height: 1.6;
      white-space: pre-line;
      color: #f5f6fa;
    }

    .policy-card .content.expanded {
      max-height: 1000px;
      transition: max-height 0.3s ease-in;
    }

    .policy-card .actions {
      margin-top: 15px;
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }

    .policy-card button {
      background-color: transparent;
      color: #f5f6fa;
      border: none;
      cursor: pointer;
      transition: color 0.3s ease;
      font-size: 1em;
      padding: 5px;
    }

    .policy-card button:hover {
      color: #3498db;
    }

    .copy-notification {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #2ecc71;
      color: white;
      padding: 10px 15px;
      border-radius: 5px;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: translateY(-20px);
    }

    .copy-notification.show {
      opacity: 1;
      transform: translateY(0);
    }

    .checkbox-group {
      display: none;
    }

    .copy-input {
      background-color: transparent;
      color: #f5f6fa;
      border: none;
      cursor: pointer;
      margin-left: 5px;
      font-size: 0.8em;
      padding: 0;
    }

    .copy-input:hover {
      color: #3498db;
    }
