@charset "UTF-8";
.terms {
  padding: 100px 0;
}

.terms-of-service {
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  color: #333;
}

.terms-hero {
  background: linear-gradient(135deg, #0173CF 0%, #0173CF 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.terms-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.terms-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #fff;
}

.terms-hero .hero-content .last-updated {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.terms-hero .hero-content .last-updated span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.toc-section {
  background: #f8f9fa;
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

.toc-section .toc-content {
  max-width: 1000px;
  margin: 0 auto;
}

.toc-section .toc-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.toc-section .toc-content .toc-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.toc-section .toc-content .toc-links .toc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.toc-section .toc-content .toc-links .toc-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #0173CF;
}

.toc-section .toc-content .toc-links .toc-link.active {
  background: linear-gradient(135deg, #0173CF 0%, #0173CF 100%);
  color: white;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.toc-section .toc-content .toc-links .toc-link i {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.terms-content {
  padding: 60px 0;
  background: white;
}

.terms-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-content .terms-section {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.terms-content .terms-section:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.terms-content .terms-section .section-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #0173CF;
}

.terms-content .terms-section .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.terms-content .terms-section .section-header h2 i {
  margin-right: 15px;
  color: #0173CF;
  font-size: 1.8rem;
}

.terms-content .terms-section .section-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #333;
}

.terms-content .terms-section .section-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

.terms-content .terms-section .section-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.terms-content .terms-section .section-content ul li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.services-grid .service-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-grid .service-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-grid .service-item i {
  font-size: 2.5rem;
  color: #0173CF;
  margin-bottom: 20px;
}

.services-grid .service-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.services-grid .service-item p {
  color: #666;
  line-height: 1.6;
}

.obligations-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.obligations-grid .obligation-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border: 2px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.obligations-grid .obligation-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #0173CF;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.obligations-grid .obligation-item i {
  font-size: 2.5rem;
  color: #0173CF;
  margin-bottom: 20px;
}

.obligations-grid .obligation-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.obligations-grid .obligation-item p {
  color: #666;
  line-height: 1.6;
}

.prohibited-list {
  margin: 30px 0;
}

.prohibited-list .prohibited-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  background: #fff5f5;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #dc3545;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.prohibited-list .prohibited-item:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prohibited-list .prohibited-item i {
  font-size: 1.2rem;
  color: #dc3545;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.prohibited-list .prohibited-item span {
  color: #721c24;
  font-weight: 500;
}

.contact-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-info-grid .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-info-grid .contact-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-grid .contact-item i {
  font-size: 2rem;
  color: #0173CF;
  margin-right: 20px;
  width: 40px;
  text-align: center;
}

.contact-info-grid .contact-item div h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-info-grid .contact-item div p {
  margin: 0;
  color: #666;
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 60px 0;
  }
  .terms-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .terms-hero .hero-content p {
    font-size: 1rem;
  }
  .toc-section {
    padding: 40px 0;
  }
  .toc-section .toc-links {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
  .toc-section .toc-links .toc-link {
    padding: 15px;
  }
  .terms-content {
    padding: 40px 0;
  }
  .terms-content .terms-section {
    padding: 25px;
    margin-bottom: 40px;
  }
  .terms-content .terms-section .section-header h2 {
    font-size: 1.5rem;
  }
  .services-grid,
  .obligations-grid,
  .contact-info-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .prohibited-list .prohibited-item {
    padding: 12px 15px;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.terms-section {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}

.terms-section:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.terms-section:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.terms-section:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.terms-section:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.terms-section:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.terms-section:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.terms-section:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.terms-section:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.terms-section:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.terms-section:nth-child(10) {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}

.terms-section:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.important-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}

.important-notice::before {
  content: '⚠️';
  position: absolute;
  top: -10px;
  left: 20px;
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 1.2rem;
}

.important-notice h4 {
  color: #856404;
  margin-bottom: 15px;
  font-weight: 600;
}

.important-notice p {
  color: #856404;
  margin-bottom: 0;
}

.legal-text {
  background: #f8f9fa;
  border-left: 4px solid #0173CF;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 10px 10px 0;
}

.legal-text p {
  margin-bottom: 10px;
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-text p:last-child {
  margin-bottom: 0;
}
/*# sourceMappingURL=terms.css.map */