body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f9;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 10px;
}

.faq-container .intro {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
  font-size: 16px;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  position: relative;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  display: block;
  color: #3498db;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2c3e50;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 15px;
  color: #444;
  padding-right: 10px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 300px;
  margin-top: 10px;
}

.faq-answer a {
  color: #3498db;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ...... */
.payment-container {
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.payment-container h1 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.payment-container .intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.payment-methods .method {
  margin-bottom: 25px;
}

.payment-methods h2 {
  color: #3498db;
  font-size: 20px;
  margin-bottom: 8px;
}

.payment-methods p {
  font-size: 16px;
  color: #444;
}

.payment-info-note h3 {
  color: #e74c3c;
  margin-bottom: 10px;
}

.payment-info-note ul {
  list-style: disc inside;
  color: #555;
  font-size: 15px;
}

.payment-info-note ul li {
  margin-bottom: 8px;
}

.payment-info-note a {
  color: #3498db;
  text-decoration: none;
}

.payment-info-note a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .payment-container {
    padding: 20px;
    margin: 30px 15px;
  }
}


.returns-container {
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.returns-container h1 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.returns-container .intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  color: #3498db;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.policy-section ul {
  list-style: disc inside;
  color: #555;
  font-size: 15px;
  margin-left: 15px;
}

.policy-section ul li {
  margin-bottom: 8px;
}

.policy-contact h3 {
  color: #e74c3c;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-contact p {
  font-size: 16px;
  color: #444;
}

.policy-contact a {
  color: #3498db;
  text-decoration: none;
}

.policy-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .returns-container {
    padding: 20px;
    margin: 30px 15px;
  }
}


/* all pages */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.about-box {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-box h1 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-box h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #34495e;
}

.about-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.about-box ul {
  list-style: none;
  padding-left: 0;
}

.about-box ul li {
  margin: 10px 0;
  font-size: 16px;
}

.about-box a {
  color: #3498db;
  text-decoration: none;
}

.about-box a:hover {
  text-decoration: underline;
}
