
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}


.container {
    width: 12rem;
    margin: .2rem auto .9rem;
    background-color: #fff;
    padding: .37rem .61rem .5rem .57rem;
    border-radius: .3rem;
}

.container p {
    font-size: .22rem;
    line-height: .33rem;
    margin-bottom: .31rem;
    font-weight: 400;
    color: #333;
}

.container h3 {
    font-size: .22rem;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333;
    margin-bottom: .1rem;
}

.nav {
    font-size: 22px;
    display: flex;
}

.nav img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-left: -374px;
}
.nav p {
    font-size: 22px;
    margin-left: 20px;
    margin-top: 4px;
}

.terms-conditions {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.terms-header {
  margin-top: 100px;

  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
}

.terms-header h1 {
  color: #2c3e50;
  font-size: 22px;
  margin: 0;
}

.terms-content {
  margin-bottom: 30px;
}

.terms-section {
  margin-bottom: 25px;
}

.terms-section h2 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #27ae60;
  padding-left: 10px;
}

.terms-section p {
  margin-bottom: 10px;
  text-align: justify;
  font-size: 18px;
}

.terms-section ul {
  padding-left: 20px;
}

.terms-section li {
  margin-bottom: 8px;
  text-align: justify;
  font-size: 18px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid #3498db;
}

.contact-item {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-item a {
  color: #3498db;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.terms-footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.acceptance-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.acceptance-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

.acceptance-checkbox input {
  margin-top: 2px;
}

.accept-button {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accept-button:hover:not(.disabled) {
  background-color: #219a52;
}

.accept-button.disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

.update-date {
  text-align: center;
  font-style: italic;
  color: #7f8c8d;
  margin: 0;
}

@media (max-width: 768px) {
  .terms-conditions {
    padding: 15px;
  }

  .terms-header h1 {
    font-size: 1.5rem;
  }

  .terms-section h2 {
    font-size: 1.2rem;
  }

  .acceptance-section {
    gap: 12px;
  }
}