/* 
=========================================================
  1. Base Setup & Variables 
========================================================= 
*/
:root {
  /* Colors - As requested */
  --color-primary: #001f60;
  /* Azul oscuro */
  --color-secondary: #7ba0c4;
  /* Azul claro */
  --color-white: #ffffff;

  /* Color Palette Extensions */
  --color-dark: #0a0f1d;
  --color-gray-100: #f8fafc;
  --color-gray-200: #e2e8f0;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, #003399 100%);
  --gradient-dark: linear-gradient(to right, #0a0f1d, #1a233a);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-bg-heavy: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Globals */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-dark);
  color: var(--color-gray-200);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Animations */
.background-anim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: var(--color-dark);
}

.shape {
  position: absolute;
  filter: blur(90px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 20s infinite alternate;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  left: -100px;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #0044cc;
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(10deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }

  100% {
    transform: translate(50px, 40px) rotate(15deg);
  }
}

/* Subtle Floating Financial Icons */
.float-icon {
  position: absolute;
  color: var(--color-secondary);
  opacity: 0.05;
  /* VERY subtle */
  font-size: 8rem;
  z-index: 0;
  pointer-events: none;
  animation: drift 25s infinite linear;
}

.icon-1 {
  top: 15%;
  left: 5%;
  font-size: 10rem;
  animation-duration: 35s;
}

.icon-2 {
  top: 60%;
  right: 10%;
  font-size: 12rem;
  animation-duration: 40s;
  animation-direction: reverse;
}

.icon-3 {
  bottom: 10%;
  left: 20%;
  font-size: 7rem;
  animation-duration: 28s;
}

.icon-4 {
  top: 40%;
  left: 80%;
  font-size: 14rem;
  animation-duration: 45s;
}

.icon-5 {
  top: 80%;
  left: 60%;
  font-size: 9rem;
  animation-duration: 32s;
  animation-direction: reverse;
}

.icon-6 {
  top: 25%;
  left: 45%;
  font-size: 5rem;
  animation-duration: 20s;
}

.icon-7 {
  bottom: 25%;
  right: 25%;
  font-size: 11rem;
  animation-duration: 38s;
}

@keyframes drift {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
  }

  100% {
    transform: translateY(0) rotate(360deg) scale(1);
  }
}

/* Typography Basics */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.text-highlight {
  color: var(--color-secondary);
  background: linear-gradient(90deg, var(--color-secondary), #a5cbf0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 4rem;
}

.bg-gradient {
  background: linear-gradient(to bottom, rgba(10, 15, 29, 0) 0%, rgba(0, 31, 96, 0.1) 50%, rgba(10, 15, 29, 0) 100%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 31, 96, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 31, 96, 0.6);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  filter: grayscale(0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}

.btn-outline:hover {
  background: rgba(123, 160, 196, 0.1);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: var(--transition);
}

.glass-panel-heavy {
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 3rem;
}

.hover-lift:hover {
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
  border-color: rgba(123, 160, 196, 0.4);
}

/* 
=========================================================
  2. Components & Layout
========================================================= 
*/

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  /* Added darker gradient at the top as requested */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar.scrolled {
  background: rgba(10, 15, 29, 0.95);
  /* Made darker than original 0.85 */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  height: 40px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-weight: 500;
  position: relative;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 31, 96, 0.6) 0%, rgba(10, 15, 29, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text-box {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(123, 160, 196, 0.15);
  border: 1px solid var(--color-secondary);
  border-radius: 50px;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-gray-200);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-card {
  padding: 3rem;
  text-align: center;
  position: relative;
}

.rotate-tilt {
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s;
}

.rotate-tilt:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.visual-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

/* Agenda Section */
.agenda-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.agenda-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.agenda-time {
  min-width: 180px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 1.1rem;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  padding-right: 2rem;
  display: flex;
  align-items: center;
}

.agenda-content {
  flex: 1;
}

/* Flex layout tweaks */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.tag-primary {
  background: rgba(0, 31, 96, 0.3);
  color: #fff;
  border: 1px solid var(--color-primary);
}

.tag-secondary {
  background: rgba(123, 160, 196, 0.2);
  color: var(--color-secondary);
}

.tag-blue {
  background: rgba(0, 68, 204, 0.2);
  color: #8bb8e8;
}

.agenda-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.agenda-speaker {
  font-size: 0.95rem;
  color: var(--color-gray-200);
  margin-bottom: 0.4rem;
}

.agenda-speaker i {
  color: var(--color-secondary);
  margin-right: 0.5rem;
  width: 16px;
}

.agenda-break {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.agenda-break .agenda-title {
  margin: 0;
  color: var(--color-secondary);
}

/* Sponsors Section */
.tier-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.tier-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
}

.sponsor-tier {
  margin-bottom: 5rem;
}

.sponsor-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
}

.grid-1 {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sponsor-card {
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.sponsor-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sponsor-logo {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
  /* Helps non-transparent logos blend slightly, assuming dark background */
}

.sponsor-card:hover .sponsor-logo {
  opacity: 1;
}

/* Tooltip purely CSS */
.tooltip {
  position: relative;
}

.tooltip::before {
  content: attr(data-tip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.tooltip:hover::before {
  opacity: 1;
}

/* Register Section */
.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.form-wrapper {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-200);
}

.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(123, 160, 196, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.checkbox-group {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 1.5rem;
  text-align: left;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-secondary);
}

.checkbox-group label {
  display: inline;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-gray-200);
  margin-bottom: 0;
}

.checkbox-group a {
  text-decoration: underline;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  text-align: center;
}

.form-message.hidden {
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
  background: #050812;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: grayscale(1) brightness(1.5);
}

.footer-about {
  color: var(--color-gray-200);
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-list i {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-700);
}

/* 
=========================================================
  3. Media Queries
========================================================= 
*/

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .agenda-item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .agenda-time {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 15, 29, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 2rem;
  }

  /* Hamburger Anim */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Modal System */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.close-modal {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.close-modal:hover {
  opacity: 1;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-body h4 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.8rem;
}

.modal-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modal-body ul li strong {
  color: var(--color-secondary);
}

.modal-footer {
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* Custom Scrollbar for Modal content */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 2rem;
  }
}