:root {
  /* Color system - Analogous color scheme */
  --primary-color: #2c7bfe;
  --primary-color-dark: #1a5bc0;
  --primary-color-light: #5a9aff;
  
  --secondary-color: #2ca5fe;
  --secondary-color-dark: #1a78c0;
  --secondary-color-light: #5ab9ff;
  
  --tertiary-color: #2c54fe;
  --tertiary-color-dark: #1a36c0;
  --tertiary-color-light: #5a7aff;
  
  --accent-color: #fe2c7b;
  --accent-color-dark: #c01a5b;
  --accent-color-light: #ff5a9a;
  
  --light-color: #f8faff;
  --dark-color: #0a1930;
  --gray-color: #6c757d;
  --gray-color-light: #e9ecef;
  
  /* Typography */
  --title-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Shadows - Neuromorphic style */
  --nm-shadow-large: 20px 20px 60px rgba(0, 0, 0, 0.05), -20px -20px 60px rgba(255, 255, 255, 0.8);
  --nm-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --nm-shadow-small: 5px 5px 10px rgba(0, 0, 0, 0.05), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  
  /* Border radius */
  --border-radius-large: 20px;
  --border-radius: 15px;
  --border-radius-small: 8px;
  
  /* Transitions */
  --transition-slow: 0.5s ease-in-out;
  --transition: 0.3s ease-in-out;
  --transition-fast: 0.2s ease-in-out;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

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

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

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

section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-color);
}

/* Button styles - GLOBAL */
.btn {
  border-radius: var(--border-radius-small);
  padding: 10px 28px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--nm-shadow-small);
}

.btn-primary::before {
  background-color: var(--primary-color-dark);
}

.btn-primary:hover {
  color: white;
  box-shadow: var(--nm-shadow);
}

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

.btn-outline-primary::before {
  background-color: var(--primary-color);
}

.btn-outline-primary:hover {
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 25, 48, 0.8), rgba(10, 25, 48, 0.6));
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
  max-width: 80%;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

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

/* Vision Section */
.vision-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(44, 123, 254, 0.05);
  z-index: 0;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(44, 123, 254, 0.03);
  z-index: 0;
}

.vision-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
}

.vision-image:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.vision-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  object-fit: cover;
}

.vision-content {
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  height: 100%;
}

.vision-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--light-color);
  position: relative;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--nm-shadow);
  margin-bottom: 30px;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.card-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

/* Research Section */
.research-section {
  background-color: white;
  position: relative;
}

.research-content {
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  height: 100%;
}

.research-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.research-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.research-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.research-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.research-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
}

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

.stat-icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.stat-content {
  flex: 1;
}

.stat-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Team Section */
.team-section {
  background-color: var(--light-color);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.team-card .card-content {
  padding: 25px;
  text-align: center;
  flex: 1;
}

.team-card .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-card .position {
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 15px;
  font-style: italic;
}

/* Resources Section */
.resources-section {
  background-color: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.resource-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.resource-item a {
  color: var(--dark-color);
  display: block;
}

.resource-content {
  padding: 25px;
}

.resource-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: var(--transition);
}

.resource-item:hover .resource-content h3 {
  color: var(--primary-color-dark);
}

.resource-content p {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.resource-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.resource-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.resource-item:hover .resource-link {
  color: var(--primary-color-dark);
}

.resource-item:hover .resource-link::after {
  width: 100%;
}

/* Events Calendar Section */
.events-section {
  background-color: var(--light-color);
}

.event-card {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 5px 0;
}

.event-date .year {
  font-size: 1rem;
}

.event-content {
  padding: 20px;
  flex: 1;
}

.event-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.event-location {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 15px;
  font-style: italic;
}

/* Pricing Section */
.pricing-section {
  background-color: white;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--nm-shadow-large);
  border: 2px solid var(--primary-color);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  background-color: white;
  border-bottom: 1px solid var(--gray-color-light);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 5px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--gray-color);
  margin-left: 5px;
}

.custom-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-features {
  padding: 30px 20px;
  flex: 1;
}

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

.pricing-features ul li {
  padding: 10px 0 10px 25px;
  position: relative;
}

.pricing-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-footer {
  padding: 20px;
  text-align: center;
  background-color: white;
  border-top: 1px solid var(--gray-color-light);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--nm-shadow);
  height: 100%;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.info-item ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.info-item ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
}

.map-container {
  margin-top: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow-small);
}

.map-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--nm-shadow);
  height: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 12px 15px;
  border: 1px solid var(--gray-color-light);
  border-radius: var(--border-radius-small);
  background-color: var(--light-color);
  box-shadow: var(--nm-shadow-inset);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: var(--nm-shadow-inset), 0 0 0 3px rgba(44, 123, 254, 0.2);
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.3em;
}

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

.contact-form .form-check-label {
  padding-left: 5px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(44, 123, 254, 0.1);
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(44, 165, 254, 0.08);
  z-index: 0;
}

.footer-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-info p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  width: auto;
  padding: 8px 15px;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  text-align: center;
  font-size: 0.9rem;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links ul li a:hover::before {
  left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter form {
  display: flex;
  margin-bottom: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  padding: 0 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
  cursor: pointer;
  transition: var(--transition);
}

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

.copyright {
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.success-content h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.success-content p {
  margin-bottom: 30px;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 150px;
  padding-bottom: 80px;
}

.privacy-content, .terms-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
}

.privacy-content h2, .terms-content h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.privacy-content h3, .terms-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 15px;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-info, .contact-form-container {
    margin-bottom: 30px;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-info, .footer-links, .footer-newsletter {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
  
  .footer-newsletter input {
    border-radius: var(--border-radius-small);
    margin-bottom: 10px;
  }
  
  .footer-newsletter button {
    border-radius: var(--border-radius-small);
    padding: 12px;
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}