.support-main {
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  background: #f7f8f9;
  color: #111;
}

.support-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 24px 0 16px;
}

.support-alert {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-alert-icon {
  font-size: 1.4rem;
}

.support-alert-content p {
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-list details {
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #232323;
  list-style: none;
}

.faq-list summary::marker {
  display: none;
}

.faq-list details[open] summary {
  margin-bottom: 8px;
}

.faq-list details div {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.faq-list a {
  color: #1f80d5;
  text-decoration: none;
}
.order-history-section {
  background: white;
  border-radius: 8px;
  padding: 24px 16px;
  margin-top: 32px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  font-family: 'Inter', sans-serif;
}

.history-box {
  background: linear-gradient(135deg, #008cff, #00aaff);
  border-radius: 8px;
  padding: 16px;
  color: white;
  margin-bottom: 20px;
}

.history-box h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.history-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.history-form label {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #111;
}

.history-form .required {
  color: rgb(188, 188, 188);
  font-size: 0.85rem;
}

.history-form input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.history-form button {
  width: 100%;
  background: #007bff;
  color: white;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.history-form button:hover {
  background: #005fc5;
}
.privacy-request, .not-found-help {
  background: white;
  border-radius: 8px;
  padding: 24px 16px;
  margin-top: 32px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.privacy-request h3,
.not-found-help h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.privacy-request p,
.not-found-help p,
.privacy-request ul {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.privacy-request ul {
  padding-left: 20px;
  margin-top: 8px;
}

.contact-box {
  background: #e8f3ff;
  border-left: 4px solid #007bff;
  padding: 12px 16px;
  margin-top: 16px;
  border-radius: 6px;
}

.contact-box strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.contact-box-link {
  text-decoration: none;
  display: block;
  margin-top: 16px;
}

.contact-box-pro {
  background-color: #f0f8ff;
 
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.contact-box-pro:hover {
  background-color: #e6f2ff;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text strong {
  font-size: 0.95rem;
  color: #003366;
  display: block;
}

.contact-text p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 2px;
}
.contact-main {
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  background: #f7f8f9;
}

.contact-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 16px;
  border: none;
  background: #eee;
  color: #003366;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

.tab-btn.active {
  background: #007bff;
  color: white;
}

.tab-content {
  background: white;
  padding: 24px 16px;
  border-radius: 0 0 8px 8px;
  display: none;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.tab-content.active {
  display: block;
}

.contact-form label,
.history-form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.contact-form input,
.history-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button,
.history-form button {
  margin-top: 16px;
  background: #007bff;
  color: white;
  padding: 12px;
  width: 100%;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover,
.history-form button:hover {
  background: #005fc5;
}

.file-upload {
  background: #f1f5ff;
  padding: 12px;
  border-radius: 6px;
  margin-top: 16px;

}

.support-alert.yellow {
  background: #fff3cd;
  
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  color: #856404;
}

.required {
  color: rgb(199, 199, 199);
  font-size: 0.85rem;
}
.file-upload {
  position: relative;
  margin-top: 16px;
  background: #f1f5ff;
  padding: 16px;
  
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
}

.file-upload input[type="file"] {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #003366;
}

.file-label span {
  font-size: 0.95rem;
}

.file-label small {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-left: 30px;
  margin-top: 4px;
}

.file-icon {
  flex-shrink: 0;
}
.tab-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
  font-family: 'Inter', sans-serif;
}

.tab-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.refund-policy {
  padding: 32px 16px;
  max-width: 700px;
  margin: auto;
  font-family: 'Inter', sans-serif;
  background-color: #f7f8f9;
  color: #111;
  line-height: 1.6;
}

.refund-policy h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.refund-policy p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #333;
}

.refund-policy a {
  color: #007bff;
  text-decoration: none;
}

.refund-policy a:hover {
  text-decoration: underline;
}
.reclamation-policy {
  padding: 32px 16px;
  max-width: 700px;
  margin: auto;
  font-family: 'Inter', sans-serif;
  background-color: #f7f8f9;
  color: #111;
  line-height: 1.6;
}

.reclamation-policy h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.reclamation-policy h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}

.reclamation-policy p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

.reclamation-policy a {
  color: #007bff;
  text-decoration: none;
}

.reclamation-policy a:hover {
  text-decoration: underline;
}
.privacy-main {
  max-width: 800px;
  margin: auto;
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

.privacy-main h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.privacy-main h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-main p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #333;
}

.privacy-main ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.privacy-main ul li {
  margin-bottom: 8px;
}

.privacy-main a {
  color: #007bff;
  text-decoration: none;
}

.privacy-main a:hover {
  text-decoration: underline;
}

.privacy-main footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}
.terms-main {
  max-width: 800px;
  margin: auto;
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

.terms-main h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.terms-main h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.terms-main p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #333;
}

.terms-main a {
  color: #007bff;
  text-decoration: none;
}

.terms-main a:hover {
  text-decoration: underline;
}

.terms-main footer {
  margin-top: 40px;
  font-size: 0.85rem;
  text-align: center;
  color: #777;
}
.popup-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-message.hidden {
  display: none;
}

.popup-content {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 340px;
}

.popup-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
}

.popup-content button {
  background-color: #181818e8;
  color: #e9e9e9;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-content button:hover {
  background-color: #c5c5c5;
}
