
:root {
  --primary-neon-blue: #00f3ff;
  --primary-neon-purple: #9d00ff;
  --primary-dark: #0a0a0f;
  --secondary-neon-pink: #ff00e6;
  --secondary-neon-green: #00ff9e;
  --bg-dark: #121218;
  --bg-darker: #1a1a24;
  --text-white: #ffffff;
  --text-light-gray: #e0e0e0;
  --text-light-blue: #c8f8ff;
}

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}


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

h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--primary-neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

h2 {
  font-size: 2rem;
  color: var(--text-light-blue);
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-neon-blue);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light-gray);
}

a {
  color: var(--primary-neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-neon-pink);
  text-shadow: 0 0 8px var(--secondary-neon-pink);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.split-screen {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .split-screen {
    flex-direction: row;
  }
  
  .split-screen__left,
  .split-screen__right {
    flex: 1;
    padding: 2rem;
  }
  
  .split-screen__left {
    border-right: 1px solid rgba(0, 243, 255, 0.2);
  }
}


.navbar {
  background-color: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--primary-neon-purple));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-neon-blue);
}

.navbar-toggler {
  border: 1px solid var(--primary-neon-blue);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 243, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: all 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--primary-neon-purple));
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--primary-neon-purple), var(--primary-neon-blue));
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.7);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-neon-blue);
  color: var(--primary-neon-blue);
}

.btn-outline:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}


.card {
  background-color: var(--bg-darker);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 243, 255, 0.3);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-neon-blue);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-light-gray);
}


.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(157, 0, 255, 0.2), transparent 70%);
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-light-gray);
}


.features {
  padding: 5rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.feature:hover {
  background-color: rgba(26, 26, 36, 0.8);
  transform: translateY(-10px);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-neon-pink);
  transition: all 0.3s ease;
}

.feature:hover .feature__icon {
  transform: scale(1.2);
  color: var(--primary-neon-blue);
}

.feature__title {
  margin-bottom: 1rem;
}


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

.form-control {
  background-color: rgba(26, 26, 36, 0.8);
  border: 1px solid rgba(0, 243, 255, 0.2);
  color: var(--text-white);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(26, 26, 36, 1);
  border-color: var(--primary-neon-blue);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
  color: var(--text-white);
}

.form-label {
  color: var(--text-light-blue);
  margin-bottom: 0.5rem;
  display: block;
}

.form-check-input {
  background-color: rgba(26, 26, 36, 0.8);
  border: 1px solid rgba(0, 243, 255, 0.2);
}

.form-check-input:checked {
  background-color: var(--primary-neon-blue);
  border-color: var(--primary-neon-blue);
}

.form-check-label {
  color: var(--text-light-gray);
}


.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(0, 243, 255, 0.2);
  padding: 3rem 0;
}

.footer__title {
  color: var(--primary-neon-blue);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-light-gray);
}

.footer__links a:hover {
  color: var(--primary-neon-blue);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-light-gray);
}


.news-widget {
  background-color: var(--bg-darker);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary-neon-purple);
}

.news-widget__title {
  color: var(--primary-neon-blue);
  margin-bottom: 1rem;
}

.news-widget__item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-widget__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-widget__date {
  font-size: 0.8rem;
  color: var(--secondary-neon-green);
  margin-bottom: 0.25rem;
}

.news-widget__heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}


.tip-widget {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgba(26, 26, 36, 0.8));
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 243, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.tip-widget::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--secondary-neon-pink) 0%, transparent 70%);
  opacity: 0.3;
}

.tip-widget__title {
  color: var(--primary-neon-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.tip-widget__title i {
  margin-right: 0.5rem;
}

.tip-widget__content {
  color: var(--text-light-gray);
}


.table {
  color: var(--text-light-gray);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.table th {
  background-color: rgba(0, 243, 255, 0.1);
  color: var(--primary-neon-blue);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

.table td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background-color: rgba(0, 243, 255, 0.05);
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-neon-blue), var(--primary-neon-purple));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--bg-dark);
  border: 3px solid var(--primary-neon-blue);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--bg-darker);
  border-radius: 8px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -20px;
  border-left-color: rgba(0, 243, 255, 0.2);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -20px;
  border-right-color: rgba(0, 243, 255, 0.2);
}

.timeline-date {
  color: var(--secondary-neon-pink);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
    border-right-color: rgba(0, 243, 255, 0.2);
    border-left-color: transparent;
  }
}


@keyframes neon-glow {
  0% {
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5), 0 0 10px rgba(0, 243, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8), 0 0 20px rgba(0, 243, 255, 0.5), 0 0 30px rgba(0, 243, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5), 0 0 10px rgba(0, 243, 255, 0.3);
  }
}

.neon-text {
  animation: neon-glow 2s infinite;
}


.holographic {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.holographic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 0, 230, 0.1) 0%, 
    rgba(0, 243, 255, 0.1) 25%, 
    rgba(0, 255, 158, 0.1) 50%, 
    rgba(157, 0, 255, 0.1) 75%, 
    rgba(255, 0, 230, 0.1) 100%);
  background-size: 400% 400%;
  animation: holographic-shift 5s ease infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes holographic-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.cyber-border {
  position: relative;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  padding: 2rem;
  background-color: var(--bg-darker);
}

.cyber-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--primary-neon-blue), 
    var(--primary-neon-purple), 
    var(--secondary-neon-pink), 
    var(--secondary-neon-green));
  background-size: 400% 400%;
  z-index: -1;
  border-radius: 10px;
  animation: cyber-border-animation 3s ease infinite;
}

@keyframes cyber-border-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.modal-content {
  background-color: var(--bg-darker);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 8px;
}

.modal-header {
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.modal-header .close {
  color: var(--text-white);
  text-shadow: none;
  opacity: 0.7;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-title {
  color: var(--primary-neon-blue);
}

.modal-footer {
  border-top: 1px solid rgba(0, 243, 255, 0.2);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 243, 255, 0.3);
  z-index: 9999;
  display: none;
}

.cookie-consent__title {
  color: var(--primary-neon-blue);
  margin-bottom: 1rem;
}

.cookie-consent__text {
  margin-bottom: 1.5rem;
}

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

.cookie-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s ease;
  display: none;
}

.cookie-settings:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.cookie-settings i {
  color: var(--primary-neon-blue);
  font-size: 1.5rem;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


.progress {
  height: 8px;
  background-color: rgba(26, 26, 36, 0.8);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--primary-neon-purple));
  border-radius: 4px;
}


.accordion-item {
  background-color: var(--bg-darker);
  border: 1px solid rgba(0, 243, 255, 0.2);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--bg-darker);
  color: var(--primary-neon-blue);
  padding: 1rem 1.5rem;
  font-weight: 500;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 243, 255, 0.05);
  color: var(--primary-neon-blue);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 243, 255, 0.25);
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f3ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-light-gray);
}


.nav-tabs {
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  margin-bottom: 1.5rem;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  color: var(--text-light-gray);
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: var(--primary-neon-blue);
}

.nav-tabs .nav-link.active {
  color: var(--primary-neon-blue);
  background-color: rgba(0, 243, 255, 0.05);
  border-color: rgba(0, 243, 255, 0.2) rgba(0, 243, 255, 0.2) transparent;
}

.tab-content {
  padding: 1.5rem;
  background-color: var(--bg-darker);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-top: none;
}


.text-neon-blue {
  color: var(--primary-neon-blue);
}

.text-neon-purple {
  color: var(--primary-neon-purple);
}

.text-neon-pink {
  color: var(--secondary-neon-pink);
}

.text-neon-green {
  color: var(--secondary-neon-green);
}

.bg-darker {
  background-color: var(--bg-darker);
}

.border-neon {
  border: 1px solid rgba(0, 243, 255, 0.3);
}

.shadow-neon {
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-neon-blue), var(--primary-neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mb-lg {
  margin-bottom: 3rem;
}

.py-lg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}


@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    min-height: 60vh;
    padding: 3rem 0;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.25rem;
  }
  
  .features {
    padding: 3rem 0;
  }
  
  .py-lg {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}


.thanks-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--secondary-neon-green);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thanks-message {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.2);
}


.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.quiz-container {
  background-color: var(--bg-darker);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.2);
}

.quiz-question {
  margin-bottom: 1.5rem;
}

.quiz-options {
  list-style: none;
  padding: 0;
}

.quiz-option {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background-color: rgba(26, 26, 36, 0.8);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option:hover {
  background-color: rgba(0, 243, 255, 0.1);
}

.quiz-option.correct {
  background-color: rgba(0, 255, 158, 0.2);
  border: 1px solid var(--secondary-neon-green);
}

.quiz-option.incorrect {
  background-color: rgba(255, 0, 0, 0.2);
  border: 1px solid #ff0033;
}

.quiz-result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  display: none;
}

.quiz-result.success {
  background-color: rgba(0, 255, 158, 0.1);
  border: 1px solid var(--secondary-neon-green);
}

.quiz-result.error {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0033;
}


.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bg-darker);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 243, 255, 0.2);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 243, 255, 0.3);
}

.article-card__image {
  height: 200px;
  object-fit: cover;
}

.article-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-card__title {
  margin-bottom: 1rem;
  color: var(--primary-neon-blue);
}

.article-card__excerpt {
  margin-bottom: 1.5rem;
  color: var(--text-light-gray);
  flex-grow: 1;
}

.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.article-card__date {
  font-size: 0.8rem;
  color: var(--secondary-neon-green);
}

.article-card__read-more {
  color: var(--primary-neon-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.article-card__read-more:hover {
  color: var(--secondary-neon-pink);
  text-decoration: none;
}


.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.comparison-table th {
  background-color: rgba(0, 243, 255, 0.1);
  color: var(--primary-neon-blue);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

.comparison-table th:first-child {
  border-top-left-radius: 8px;
}

.comparison-table th:last-child {
  border-top-right-radius: 8px;
}

.comparison-table td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.comparison-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.comparison-table tbody tr {
  background-color: var(--bg-darker);
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(0, 243, 255, 0.05);
}

.feature-check {
  color: var(--secondary-neon-green);
  font-size: 1.25rem;
}

.feature-cross {
  color: #ff0033;
  font-size: 1.25rem;
}


[data-sal] {
  transition-duration: 0.8s;
}