/* ==========================================================================
   CSS Reset and Base Styles
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d1b2a;
  color: #ffffff;
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   Container and Layout Utilities
   ========================================================================== */

.container {
  margin: 0 auto;
  padding: 0 47px;
}

/* ==========================================================================
   Navigation Bar Styles
   ========================================================================== */

.navbar {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1b263b;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.logo {
  height: 40px;
  width: 89px;
}

.company-name {
  color: #b7bbc2;
  font-size: 14px;
  font-weight: 400;
}

.nav-buttons {
  background-color: #1b263b;
  border-radius: 50px;
  padding: 6px 12px;
  display: flex;
  gap: 12px;
}

.nav-btn {
  background-color: transparent;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-btn.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
  border-radius: 50px;
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.main-content {
  min-height: calc(100vh - 444px);
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.content-section {
  display: none;
}

.content-section.active {
  animation: fadeIn 0.5s ease-in-out;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Support Content Styles
   ========================================================================== */

.support-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.section-header {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.section-header h1 {
  font-size: 24px;
  font-weight: 700;
}

.section-header p {
  color: #b7bbc2;
  font-size: 14px;
  font-weight: 400;
}

.contact-info-label {
  font-size: 16px;
  font-weight: 400;
}

.email-info-details {
  text-decoration: underline;
}

/* ==========================================================================
   Privacy Content Styles
   ========================================================================== */

#privacy-content .container {
  padding: 0 47px;
}

.privacy-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.privacy-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.privacy-card {
  align-items: center;
  background-color: #1b263b;
  border-left: 12px solid #016ffd;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  height: 84px;
  padding: 9px 16px;
}

.privacy-card-img {
  align-items: center;
  background-color: #0d1b2a;
  border: 1px solid #575d69;
  border-radius: 8px;
  display: flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.privacy-card-info h1 {
  font-size: 18px;
  font-weight: 600;
}

.privacy-card-info p {
  color: #b7bbc2;
  font-size: 14px;
  font-weight: 400;
}

.tab-section-container {
  margin-top: 20px;
}

.intro-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.intro-content p {
  font-size: 21px;
  font-weight: 400;
}

.privacy-tabs {
  overflow: hidden;
}

.tab-bar {
  background-color: #1b263b;
  border: 1px solid #334155;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 11px;
}

.tab-btn {
  background-color: transparent;
  border: none;
  border-radius: 50px;
  color: #94a3b8;
  cursor: pointer;

  font-weight: 700;
  font-size: 17px;
  padding: 7px 21px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background-color: #334155;
  color: #f1f5f9;
}

.tab-btn.active {
  background-color: #016ffd;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  color: white;
}

.tab-content {
  padding: 32px 0;
}

.tab-content h1 {
  font-size: 24px;
  font-weight: 700;
}

.tab-section {
  display: none;
}

.tab-section.active {
  animation: slideIn 0.4s ease-out;
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tab-section h2 {
  color: #3b82f6;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tab-section h3 {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

.tab-section p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tab-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.tab-section li {
  color: #e2e8f0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
}

.tab-section li::marker {
  color: #ffffff;
}

.tab-section strong {
  color: #f1f5f9;
  font-weight: 600;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
  background-color: #1b263b;
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.contact-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.contact-info span {
  font-weight: 600;
}

.contact-item {
  align-items: center;
  display: flex;
  gap: 8px;
}

.contact-img {
  align-items: center;
  background-color: #0d1b2a;
  border: 1px solid #575d69;
  border-radius: 8px;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.contact-img img {
  height: 32px;
  width: 32px;
}

.copyright {
  color: #64748b;
  font-size: 0.9rem;
  padding-top: 24px;
  text-align: center;
}
