/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(90deg, #3b82f6 0%, #823fe0 65.87%);
  color: white;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: relative;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.btn-get-started {
  padding: 12px 32px;
  border: 2px solid white;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}

.btn-get-started:hover {
  background: white;
  color: #7b68ee;
  transform: translateY(-2px);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

.btn-back {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.btn-back:hover {
  transform: translateX(-4px);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 20px 0 30px 0;
  text-align: center;
}

/* Content Container */
.content-container {
  margin: 0 auto;
}

.content-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  line-height: 1.4;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  text-align: justify;
}

.highlight-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  font-weight: 600;
}

.content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.content-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.warranty-list li {
  font-weight: 500;
}

/* Legal Terms Section */
.legal-terms {
  margin-top: 50px;
}

.legal-item {
  margin-bottom: 35px;
}

.legal-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.legal-item .content-list li {
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

.contact-info a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

/* Footer */
.footer {
  position: relative;
  padding: 30px 0;
  margin-top: 60px;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.btn-legal-policies {
  padding: 10px 28px;
  border: 2px solid white;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}

.btn-legal-policies:hover {
  background: white;
  color: #7b68ee;
  transform: translateY(-2px);
}

/* Responsive Styles */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .logo-text h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo-icon svg {
    width: 50px;
    height: 50px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }

  .content-list li {
    font-size: 0.9rem;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .logo-text h1 {
    font-size: 1.25rem;
  }

  .tagline {
    font-size: 0.75rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon svg {
    width: 40px;
    height: 40px;
  }

  .btn-get-started {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-title {
    font-size: 2rem;
    margin: 15px 0 25px 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .subsection-title {
    font-size: 1.1rem;
  }

  .intro-text,
  .highlight-text {
    font-size: 0.9rem;
    text-align: left;
  }

  .content-list li {
    font-size: 0.85rem;
    text-align: left;
    padding-left: 20px;
  }

  .content-list li::before {
    left: 5px;
  }

  .legal-number {
    font-size: 1.1rem;
  }

  .btn-back {
    margin-bottom: 10px;
  }

  .btn-back svg {
    width: 28px;
    height: 28px;
  }

  .btn-legal-policies {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .content-container {
    padding: 0 15px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .header .d-flex {
    gap: 8px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 0.7rem;
  }

  .btn-get-started {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .subsection-title {
    font-size: 1rem;
  }

  .intro-text,
  .highlight-text {
    font-size: 0.85rem;
  }

  .content-list li {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .legal-number {
    font-size: 1rem;
  }

  .copyright {
    font-size: 0.85rem;
  }

  .btn-legal-policies {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  /* .footer .d-flex {
    flex-direction: column;
    align-items: flex-start;
  } */
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .logo-text h1 {
    font-size: 1rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .content-list li {
    font-size: 0.75rem;
  }
}
@media (min-width: 375px) and (max-width: 375px) {
  .set_navbar {
    padding: 0px !important;
  }

  .set_mobile_btn {
    margin-right: 10px !important;
    padding: 12px 11px !important;
  }
}

@media (min-width: 390px) and (max-width: 390px) {
  .set_navbar {
    display: contents !important;
  }
  .set_mobile_btn {
    margin-right: 10px !important;
    padding: 12px 11px !important;
  }
}

@media (min-width: 430px) and (max-width: 430px) {
  .set_navbar {
    padding: 0px !important;
  }
}

@media (min-width: 412px) and (max-width: 412px) {
  .set_navbar {
    display: contents !important;
  }
}

@media (min-width: 414px) and (max-width: 414px) {
  .set_navbar {
    display: contents !important;
  }
}
@media (min-width: 375px) and (max-width: 375px) {
  .set_navbar {
    padding: 0px !important;
  }
}

@media (min-width: 360px) and (max-width: 360px) {
  .set_navbar {
    padding: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 360px) {
  .set_navbar {
    padding: 0px !important;
  }
  .image-fluid {
    height: 100px !important;
    width: 100px !important;
  }
}
@media (min-width: 344px) and (max-width: 344px) {
  .set_navbar {
    padding: 0px !important;
  }
  .image-fluid {
    height: 100px !important;
    width: 100px !important;
  }

  .set_mobile_btn {
    margin-right: 10px !important;
    padding: 12px 11px !important;
  }
}
@media (min-width: 360px) and (max-width: 360px) {
  .set_gap {
  gap: 0px !important;
}
}
