/* 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 - 250px);
  padding-bottom: 80px;
}

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

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

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

/* Policy Cards Grid */
.policy-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

.policy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  min-height: 100px;
  text-wrap-mode: nowrap !important;
}

.policy-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.policy-card:hover .arrow-icon {
  transform: translate(4px, -4px);
}

.policy-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.arrow-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 16px;
}

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

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

/* 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;
  }

  .policy-card {
    padding: 28px 32px;
  }

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

/* 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: 30px 0;
  }

  .policy-card {
    padding: 24px 28px;
    min-height: 90px;
  }

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

  .arrow-icon {
    width: 20px;
    height: 20px;
  }

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

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

/* 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;
  }

  .policy-card {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .policy-card .arrow-icon {
    align-self: flex-end;
    margin-left: 0;
  }

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

  .copyright {
    font-size: 0.85rem;
  }
}

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

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

  .policy-title {
    font-size: 0.95rem;
  }
}

@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;
  }
  .image-fluid {
    height: 100px !important;
    width: 100px !important;
  }
  .set_mobile_btn {
    margin-right: 10px !important;
    padding: 12px 11px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1024px) {
  .policy-title {
    font-size: 1rem !important;
  }
  .arrow-icon {
    margin-left: 0px !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: 1280px) and (max-width: 1280px) {
  .policy-title {
    font-size: 1.2rem !important;
  }
}
