@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
body {
      font-family: "Merriweather", serif;
      background-color: #f8f9f4;
      margin: 0;
      padding: 0;
    }

    /* Top Home Button */
    .top-home {
      background-color: #6b8e23;
      padding: 15px 20px;
      text-align: left;
    }

    .top-home a {
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .top-home a:hover {
      color: #fff;
      text-decoration: underline;
    }

    /* Page Content */
    .refund-container {
      max-width: 900px;
      margin: 50px auto;
      padding: 30px;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 15px 50px rgba(107,142,35,0.1);
    }

    .refund-container h1 {
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: #2e2e2e;
    }

    .refund-container h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-top: 25px;
      margin-bottom: 10px;
      color: #6b8e23;
    }

    .refund-container p, .refund-container li {
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .refund-container ul {
      padding-left: 20px;
    }

    /* Highlight Box for 72 Hours Policy */
    .highlight-box {
      background-color: #f0fff0;
      border-left: 5px solid #6b8e23;
      padding: 20px;
      margin: 20px 0;
      border-radius: 10px;
      font-weight: 600;
      color: #2e2e2e;
      box-shadow: 0 5px 15px rgba(107,142,35,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .refund-container {
        margin: 30px 15px;
        padding: 20px;
      }

      .refund-container h1 {
        font-size: 2rem;
      }

      .refund-container h2 {
        font-size: 1.4rem;
      }
    }