/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Color Scheme - Analog colors */
  --primary-color: #3273dc;
  --primary-dark: #2160c4;
  --primary-light: #4a89dc;
  --secondary-color: #3291dc;
  --secondary-dark: #2179c4;
  --secondary-light: #4aa5dc;
  --accent-color: #32a4dc;
  --accent-dark: #218fb4;
  --accent-light: #4ab8e6;

  /* Background Colors */
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --bg-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-card: #ffffff;

  /* Text Colors */
  --text-dark: #2c3e50;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

/* ==================== BASE STYLES ==================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  color: var(--primary-color);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

p {
  margin-bottom: var(--space-md);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== UTILITY CLASSES ==================== */
.rounded {
  border-radius: var(--border-radius-md);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== BUTTON STYLES ==================== */
.button {
  transition: var(--transition-normal);
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: transform 0.6s ease;
}

.button:hover::after {
  transform: translateX(100%);
}

.button.is-primary {
  background-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-light {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.button.is-light:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

.button.is-rounded {
  border-radius: var(--border-radius-full);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.button.is-primary.is-outlined {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button.is-primary.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.button.is-white.is-outlined {
  border-color: var(--text-white);
  color: var(--text-white);
}

.button.is-white.is-outlined:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}

/* ==================== NAVBAR STYLES ==================== */
.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar.is-fixed-top {
  padding: 0.5rem 0;
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-normal);
}

.navbar-item:hover {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

.navbar-burger {
  height: auto;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Particle animation for hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.5)"/></svg>');
  z-index: 5;
  opacity: 0.5;
  animation: float 60s linear infinite;
}

@keyframes float {
  0% { background-position: 0 0; }
  100% { background-position: 100% 100%; }
}

/* ==================== ABOUT SECTION ==================== */
#about {
  position: relative;
  background-color: var(--bg-white);
}

#about .card {
  height: 100%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

#about .card-image {
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

#about .card-image img {
  transition: var(--transition-slow);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#about .card:hover .card-image img {
  transform: scale(1.05);
}

#about .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
}

#about .card-content h3 {
  margin-bottom: var(--space-md);
}

#about .content {
  margin-bottom: var(--space-xl);
}

/* ==================== STATISTICS SECTION ==================== */
#statistics {
  position: relative;
  background-color: var(--bg-light);
  overflow: hidden;
}

#statistics::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(50,115,220,0.1)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.stat-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.stat-title {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.progress-container {
  width: 100%;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-full);
  height: 8px;
  overflow: hidden;
  margin-top: var(--space-md);
}

.progress-bar {
  height: 100%;
  border-radius: var(--border-radius-full);
  background: var(--bg-gradient);
  transition: width 1.5s ease-in-out;
}

.chart-container {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

/* ==================== SERVICES SECTION ==================== */
#services {
  position: relative;
  background-color: var(--bg-white);
}

.service-card {
  height: 100%;
  transition: var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-card .card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card .card-content {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .card-content h3 {
  margin-bottom: var(--space-md);
}

.service-card .card-content p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* ==================== INNOVATION SECTION ==================== */
#innovation {
  position: relative;
  background-color: var(--primary-color);
  overflow: hidden;
}

#innovation::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 80s linear infinite;
  z-index: 0;
}

.innovation-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.innovation-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--bg-gradient);
  opacity: 0.1;
  border-radius: 50% 0 0 0;
  z-index: -1;
  transition: var(--transition-normal);
}

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

.innovation-card:hover::after {
  width: 150px;
  height: 150px;
  opacity: 0.2;
}

.innovation-card .title {
  margin-bottom: var(--space-md);
}

.innovation-card .progress {
  height: 8px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  background-color: var(--bg-light);
  margin: var(--space-sm) 0;
}

.innovation-card .progress-bar {
  height: 100%;
  background: var(--bg-gradient);
}

.innovation-card .progress-container {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-md);
}

.innovation-card .progress-container span {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.innovation-card .progress-container span:last-child {
  align-self: flex-end;
  font-weight: bold;
  color: var(--primary-color);
}

/* ==================== RESOURCES SECTION ==================== */
.resource-card {
  height: 100%;
  transition: var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  position: relative;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--bg-gradient);
}

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

.resource-card .card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card .card-content h3 {
  margin-bottom: var(--space-md);
}

.resource-card .card-content p {
  flex-grow: 1;
}

/* ==================== WORKSHOPS SECTION ==================== */
.workshop-card {
  height: 100%;
  transition: var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.workshop-card .card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workshop-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.workshop-date {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.workshop-details {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-md);
  padding: var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
}

.workshop-details span {
  margin-bottom: var(--space-xs);
}

.webinar-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--accent-color);
  color: var(--text-white);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

/* Accordion styling */
.accordion-container {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.accordion {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-header .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-lg);
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion.active .accordion-content {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

/* ==================== INSIGHTS SECTION ==================== */
.insight-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.insight-card .card-content {
  padding: var(--space-xl);
}

.cta-download {
  padding: var(--space-lg);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  text-align: center;
}

.stats-highlights {
  display: flex;
  flex-direction: column;
}

.stat-highlight {
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
}

.stat-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-highlight .stat-number {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.stat-highlight .stat-description {
  color: var(--text-medium);
  font-weight: 500;
}

/* ==================== BLOG SECTION ==================== */
.blog-card {
  height: 100%;
  transition: var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-card .card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.blog-date {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: var(--primary-light);
  color: var(--text-white);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.blog-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .card-content h3 {
  margin-bottom: var(--space-md);
}

.blog-card .card-content p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* ==================== WEBINARS SECTION ==================== */
.webinar-card {
  height: 100%;
  transition: var(--transition-normal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.webinar-card .card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webinar-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.webinar-date {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--accent-color);
  color: var(--text-white);
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* ==================== COMMUNITY SECTION ==================== */
#community {
  position: relative;
  overflow: hidden;
}

#community::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 60s linear infinite;
  z-index: 0;
}

.community-card {
  position: relative;
  z-index: 1;
}

.community-benefits {
  margin-left: var(--space-lg);
}

.community-benefits li {
  margin-bottom: var(--space-md);
  position: relative;
}

.community-benefits li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.testimonial-card {
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-md);
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ==================== CONTACT SECTION ==================== */
.contact-info {
  padding-right: var(--space-xl);
}

.contact-item {
  margin-bottom: var(--space-lg);
}

.contact-item h3 {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.contact-item p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.contact-form-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.social-links a {
  margin-right: var(--space-sm);
  color: var(--primary-color);
  transition: var(--transition-normal);
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-xl);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  height: 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: var(--border-radius-md);
}

/* ==================== FOOTER SECTION ==================== */
.footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: var(--space-xxl) 0;
}

.footer .title {
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.footer p {
  color: var(--text-light);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: var(--space-md);
}

.footer ul li a {
  color: var(--text-light);
  transition: var(--transition-normal);
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer .social-links {
  margin-top: var(--space-md);
}

.footer .social-links a {
  color: var(--text-light);
  margin-right: var(--space-md);
  transition: var(--transition-normal);
  text-decoration: none;
}

.footer .social-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* ==================== MODALS ==================== */
.modal-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.modal-card-head {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.modal-card-title {
  color: var(--text-white);
}

.delete {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-card-body {
  padding: var(--space-xl);
}

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

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* ==================== MEDIA QUERIES ==================== */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
}

@media screen and (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
  
  .hero-image {
    height: 80vh;
  }
  
  .card {
    margin-bottom: var(--space-lg);
  }
}

/* ==================== SUCCESS PAGE ==================== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--bg-light);
}

.success-container {
  text-align: center;
  max-width: 600px;
  padding: var(--space-xxl);
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

/* ==================== PRIVACY & TERMS PAGES ==================== */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

.content-page .content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.content-page h1,
.content-page h2,
.content-page h3 {
  color: var(--text-dark);
}

.content-page p,
.content-page li {
  color: var(--text-medium);
}

/* Particle animation for special sections */
.particle-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.5;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}