
:root {
  --color-primary: #1A365D;
  --color-secondary: #2A6BAE;
  --color-accent: #E2B04A;
  --color-bg-light: #F8F9FA;
  --color-bg-dark: #1F2937;
  --color-text-primary: #1F2937;
  --color-text-secondary: #4B5563;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-error: #EF4444;
  --font-primary: 'Roboto', sans-serif;
  --font-code: 'Fira Code', monospace;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition-base: all 0.3s ease;
}


@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-light: #1F2937;
    --color-bg-dark: #111827;
    --color-text-primary: #F9FAFB;
    --color-text-secondary: #D1D5DB;
    --color-border: #374151;
  }
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover, a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

button {
  cursor: pointer;
}


h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}


.nx-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nx-content {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nx-content {
    padding: 0 2rem;
  }
}


.nx-header {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nx-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.nx-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-code);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.nx-logo svg {
  height: 40px;
}

.nx-nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nx-nav-desktop {
    display: flex;
    gap: 1.5rem;
  }
}

.nx-nav-item {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nx-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-base);
}

.nx-nav-item:hover::after,
.nx-nav-item:focus::after,
.nx-nav-item.nx-active::after {
  width: 100%;
}

.nx-nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: var(--transition-base);
  z-index: 200;
  padding: 2rem 1rem;
}

.nx-nav-mobile.nx-active {
  transform: translateX(0);
}

.nx-nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.nx-hamburger {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 300;
}

@media (min-width: 768px) {
  .nx-hamburger {
    display: none;
  }
}

.nx-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition-base);
}

.nx-hamburger span:nth-child(1) {
  top: 6px;
}

.nx-hamburger span:nth-child(2) {
  top: 12px;
}

.nx-hamburger span:nth-child(3) {
  top: 18px;
}

.nx-hamburger.nx-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}

.nx-hamburger.nx-active span:nth-child(2) {
  opacity: 0;
}

.nx-hamburger.nx-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
}

.nx-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.nx-overlay.nx-active {
  opacity: 1;
  visibility: visible;
}


.nx-cert-bar {
  background-color: var(--color-bg-dark);
  color: white;
  padding: 0.75rem 0;
}

.nx-cert-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nx-cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.nx-cert-icon {
  color: var(--color-accent);
}


.nx-hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background-color: var(--color-primary);
  color: white;
}

.nx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nx-hero-content {
    flex-direction: row;
    align-items: center;
  }
}

.nx-hero-text {
  flex: 1;
}

.nx-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.nx-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.nx-hero-image {
  flex: 1;
  position: relative;
}

.nx-hero-image img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}


.nx-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: var(--transition-base);
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.nx-cta-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.nx-cta-primary:hover, .nx-cta-primary:focus {
  background-color: #d6a43c;
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

.nx-cta-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.nx-cta-secondary:hover, .nx-cta-secondary:focus {
  background-color: rgba(226, 176, 74, 0.1);
  color: var(--color-accent);
  text-decoration: none;
}


.nx-articles {
  padding: 4rem 0;
}

.nx-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.nx-section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.nx-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.nx-article-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  background-color: white;
}

@media (prefers-color-scheme: dark) {
  .nx-article-card {
    background-color: var(--color-bg-dark);
  }
}

.nx-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.nx-article-image {
  height: 200px;
  overflow: hidden;
}

.nx-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nx-article-card:hover .nx-article-image img {
  transform: scale(1.05);
}

.nx-article-content {
  padding: 1.5rem;
}

.nx-article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.nx-article-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.nx-article-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.nx-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}


.nx-featured {
  padding: 4rem 0;
  background-color: var(--color-bg-dark);
  color: white;
}

.nx-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nx-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nx-featured-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 400px;
}

.nx-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nx-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.nx-featured-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.nx-featured-excerpt {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}


.nx-perspectives {
  padding: 4rem 0;
}

.nx-perspective-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nx-perspective-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nx-perspective-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: var(--shadow-md);
}

@media (prefers-color-scheme: dark) {
  .nx-perspective-item {
    background-color: var(--color-bg-dark);
  }
}

.nx-perspective-icon {
  font-size: 2rem;
  color: var(--color-accent);
}

.nx-perspective-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.nx-perspective-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}


.nx-faq {
  padding: 4rem 0;
}

.nx-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.nx-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.nx-accordion-header {
  padding: 1.5rem 0;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-accordion-icon {
  transition: var(--transition-base);
}

.nx-accordion-header.nx-active .nx-accordion-icon {
  transform: rotate(180deg);
}

.nx-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nx-accordion-content-inner {
  padding: 0 0 1.5rem;
}


.nx-form-section {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
}

.nx-form {
  max-width: 600px;
  margin: 0 auto;
}

.nx-form-group {
  margin-bottom: 1.5rem;
}

.nx-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.nx-form-input,
.nx-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.25rem;
  font-family: var(--font-primary);
  transition: var(--transition-base);
}

.nx-form-input:focus,
.nx-form-textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 107, 174, 0.2);
}

.nx-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.nx-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.nx-form-checkbox input {
  margin-top: 0.25rem;
}

.iti {
  width: 100%;
}


.nx-footer {
  background-color: var(--color-bg-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.nx-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nx-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.nx-footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nx-footer-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}

.nx-footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.nx-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nx-footer-link {
  color: #D1D5DB;
  transition: var(--transition-base);
}

.nx-footer-link:hover, .nx-footer-link:focus {
  color: white;
  text-decoration: none;
}

.nx-footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #D1D5DB;
}

.nx-footer-contact-icon {
  color: var(--color-accent);
}

.nx-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nx-footer-copyright {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.nx-footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}


.nx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-dark);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: var(--transition-base);
}

.nx-cookie-banner.nx-active {
  transform: translateY(0);
}

.nx-cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nx-cookie-content {
    flex-direction: row;
    align-items: center;
  }
}

.nx-cookie-text {
  flex: 1;
}

.nx-cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.nx-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nx-cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 100%;
  max-width: 600px;
  background-color: var(--color-bg-light);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.nx-cookie-settings.nx-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.nx-cookie-settings-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.nx-cookie-settings-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.nx-cookie-settings-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.nx-cookie-category {
  margin-bottom: 1.5rem;
}

.nx-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.nx-cookie-category-title {
  font-weight: 500;
}

.nx-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.nx-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.nx-cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: var(--transition-base);
}

.nx-cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: var(--transition-base);
}

.nx-cookie-toggle input:checked + .nx-cookie-toggle-slider {
  background-color: var(--color-success);
}

.nx-cookie-toggle input:checked + .nx-cookie-toggle-slider:before {
  transform: translateX(20px);
}

.nx-cookie-category-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.nx-cookie-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.nx-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.nx-modal.nx-active {
  opacity: 1;
  visibility: visible;
}

.nx-modal-content {
  background-color: var(--color-bg-light);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 500px;
  transform: scale(0.95);
  transition: var(--transition-base);
}

.nx-modal.nx-active .nx-modal-content {
  transform: scale(1);
}

.nx-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-modal-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.nx-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.nx-modal-close:hover, .nx-modal-close:focus {
  color: var(--color-text-primary);
}

.nx-modal-body {
  padding: 1.5rem;
}

.nx-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.nx-contact-section {
  padding: 4rem 0;
}

.nx-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nx-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.nx-contact-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.nx-contact-text {
  flex: 1;
}

.nx-contact-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.nx-map {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.nx-perspective-section {
  padding: 4rem 0;
}

.nx-perspective-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.nx-perspective-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.nx-perspective-category {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow-md);
}

@media (prefers-color-scheme: dark) {
  .nx-perspective-category {
    background-color: var(--color-bg-dark);
  }
}

.nx-perspective-header {
  padding: 2rem;
  background-color: var(--color-primary);
  color: white;
}

.nx-perspective-body {
  padding: 2rem;
}

.nx-perspective-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nx-perspective-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.nx-perspective-list-icon {
  color: var(--color-accent);
  margin-top: 0.25rem;
}


.nx-thanks-section {
  padding: 6rem 0;
  text-align: center;
}

.nx-thanks-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: 2rem;
}

.nx-thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.nx-thanks-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}


.nx-legal-section {
  padding: 4rem 0;
}

.nx-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.nx-legal-date {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.nx-legal-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.nx-legal-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.nx-legal-section p,
.nx-legal-section ul,
.nx-legal-section ol {
  margin-bottom: 1.5rem;
}

.nx-legal-section ul,
.nx-legal-section ol {
  padding-left: 1.5rem;
}

.nx-legal-section li {
  margin-bottom: 0.5rem;
}


.nx-text-center {
  text-align: center;
}

.nx-mt-0 {
  margin-top: 0;
}

.nx-mb-1 {
  margin-bottom: 0.25rem;
}

.nx-mb-2 {
  margin-bottom: 0.5rem;
}

.nx-mb-3 {
  margin-bottom: 0.75rem;
}

.nx-mb-4 {
  margin-bottom: 1rem;
}

.nx-mb-6 {
  margin-bottom: 1.5rem;
}

.nx-mb-8 {
  margin-bottom: 2rem;
}

.nx-mb-12 {
  margin-bottom: 3rem;
}

.nx-pt-4 {
  padding-top: 1rem;
}

.nx-pt-8 {
  padding-top: 2rem;
}

.nx-pt-12 {
  padding-top: 3rem;
}

.nx-pb-4 {
  padding-bottom: 1rem;
}

.nx-pb-8 {
  padding-bottom: 2rem;
}

.nx-pb-12 {
  padding-bottom: 3rem;
}

.nx-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nx-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.nx-py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.nx-w-full {
  width: 100%;
}

.nx-hidden {
  display: none;
}

.nx-flex {
  display: flex;
}

.nx-items-center {
  align-items: center;
}

.nx-justify-between {
  justify-content: space-between;
}

.nx-justify-center {
  justify-content: center;
}

.nx-gap-2 {
  gap: 0.5rem;
}

.nx-gap-4 {
  gap: 1rem;
}

.nx-gap-6 {
  gap: 1.5rem;
}

.nx-gap-8 {
  gap: 2rem;
}