:root {
  /* Primary colors */
  --primary-color: #4752E9;
  --primary-dark: #2C39D0;
  --primary-light: #7A83F3;
  --secondary-color: #47A0E9;
  --secondary-dark: #2C7ED0;
  --secondary-light: #7ABEF3;
  --accent-color: #6647E9;
  --accent-dark: #4A2CD0;
  --accent-light: #8A7AF3;
  
  /* Neutral colors */
  --dark: #15181F;
  --dark-blue: #1F2947;
  --gray-dark: #3A3E5C;
  --gray: #6C7293;
  --gray-light: #A9AECC;
  --light: #F5F6FF;
  
  /* Text colors */
  --text-dark: #222230;
  --text-light: #FFFFFF;
  --text-muted: #8C8DB0;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Fonts */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
}

/* Base styles */
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--light);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  position: relative;
}

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

p {
  margin-bottom: var(--spacing-sm);
}

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

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

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.container {
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

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

/* Utility classes */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-light) !important;
}

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

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

.text-accent {
  color: var(--accent-color);
}

.bg-dark {
  background-color: var(--dark);
  color: var(--text-light);
}

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

.bg-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.bg-light {
  background-color: var(--light);
  color: var(--text-dark);
}

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

.has-text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.button {
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  width: max-content;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
  height: max-content;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width var(--transition-normal);
  z-index: -1;
}

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

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

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

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

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

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

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

.button.is-outlined {
  background-color: transparent;
}

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

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

.pulse-button {
  animation: pulse 2s infinite;
}

.hover-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hover-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: height var(--transition-normal);
  z-index: -1;
}

.hover-button:hover::after {
  height: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(71, 82, 233, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(71, 82, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(71, 82, 233, 0);
  }
}

/* Header & Navigation */
.header {
  width: 100%;
  z-index: 1000;
}

.navbar {
  background-color: transparent;
  transition: background-color var(--transition-normal);
}

.navbar.is-fixed-top {
  backdrop-filter: blur(10px);
  background-color: rgba(245, 246, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

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

.navbar-item {
  font-weight: 500;
  position: relative;
}

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

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

.navbar-burger {
  color: var(--primary-color);
}

.animated-icon {
  position: relative;
  overflow: hidden;
}

.animated-icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.animated-icon:hover::before {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero.is-fullheight {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
}

.hero .title, 
.hero .subtitle,
.hero-description {
  color: var(--text-light) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.6;
}

.scroll-down-icon {
  font-size: 2rem;
  color: var(--text-light);
  opacity: 0.8;
  animation: bounce 2s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Statistics Section */
.statistics-section {
  background-color: var(--light);
  padding: var(--spacing-xl) 0;
}

.stat-card {
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  box-shadow: var(--shadow-md);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-dark);
  font-weight: 500;
}

/* Community Section */
.community-section {
  padding: var(--spacing-xl) 0;
  color: var(--text-light);
}

.community-section .title,
.community-section .subtitle {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hover-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--light);
  box-shadow: var(--shadow-md);
}

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

.hover-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-image {
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  position: relative;
}

.image-container {
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  background-color: var(--light);
}

.card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.card-content p {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

/* Events Section */
.events-section {
  background-color: var(--light);
  padding: var(--spacing-xl) 0;
}

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

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

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

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

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  display: block;
}

.location {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-dark);
}

.event-description {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.calendar-preview {
  margin-top: var(--spacing-xl);
}

.calendar-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-md);
}

.calendar-image {
  width: 100%;
  height: auto;
  display: block;
}

/* External Resources Section */
.external-resources-section {
  background-color: var(--dark-blue);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
}

.external-resources-section .title,
.external-resources-section .subtitle {
  color: var(--text-light);
}

.resource-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: var(--spacing-sm);
}

.resource-card h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.resource-card p {
  color: var(--gray-light);
  margin-bottom: var(--spacing-md);
}

.resource-card .button {
  margin-top: auto;
}

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

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

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

.team-card .card-image {
  overflow: hidden;
}

.team-card .image-container {
  height: 300px;
}

.team-card .card-content {
  padding: var(--spacing-md);
  text-align: center;
}

.team-card h3 {
  margin-bottom: 0;
  color: var(--text-dark);
}

.team-card .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-card p {
  color: var(--gray-dark);
  margin-bottom: var(--spacing-sm);
}

.social-links {
  margin-top: var(--spacing-sm);
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.social-links a {
  color: var(--gray);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
}

.join-team-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.join-team-banner h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

/* Press Section */
.press-section {
  background-color: var(--light);
  padding: var(--spacing-xl) 0;
}

.press-card {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.press-card img {
  max-width: 150px;
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.press-card:hover img {
  opacity: 1;
}

.press-quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.press-source {
  font-weight: 600;
  color: var(--primary-color);
}

.press-coverage {
  margin-top: var(--spacing-xl);
}

.media {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.media:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.media-left {
  color: var(--primary-color);
  margin-right: var(--spacing-md);
}

.media-content .title {
  margin-bottom: var(--spacing-xs);
}

.media-content .subtitle {
  color: var(--gray);
}

/* Q&A Section */
.qa-section {
  background-color: var(--light);
  padding: var(--spacing-xl) 0;
}

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

.qa-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--light);
}

.qa-question {
  padding: var(--spacing-md);
  background-color: var(--light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa-question h3 {
  margin-bottom: 0;
  color: var(--text-dark);
  flex-grow: 1;
}

.qa-question .icon {
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.qa-question:hover .icon {
  transform: rotate(180deg);
}

.qa-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background-color: rgba(0, 0, 0, 0.02);
}

.qa-answer p {
  padding-bottom: var(--spacing-md);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.contact-info {
  margin-bottom: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.contact-item i {
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
  margin-top: 5px;
}

.contact-form .field {
  margin-bottom: var(--spacing-md);
}

.contact-form .label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea {
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-inner);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(71, 82, 233, 0.2);
}

.contact-form .button {
  height: auto;
  padding: 12px 24px;
}

/* Team Search Section */
.team-search-section {
  background-color: var(--light);
  padding: var(--spacing-xl) 0;
}

.search-filters {
  margin-bottom: var(--spacing-lg);
}

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

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

.teammate-card .image-container {
  height: 280px;
}

.teammate-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.teammate-card h3 {
  margin-bottom: var(--spacing-xs);
}

.teammate-card .tag {
  margin-right: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.teammate-card .location {
  margin-bottom: var(--spacing-sm);
}

.teammate-description {
  flex-grow: 1;
  margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--text-light);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
}

.footer .title {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.footer-description {
  margin-bottom: var(--spacing-md);
  color: var(--gray-light);
}

.footer .contact-info {
  color: var(--gray-light);
}

.footer .contact-info i {
  color: var(--primary-light);
  width: 20px;
  margin-right: var(--spacing-sm);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.newsletter-form .input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

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

.newsletter-form .input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(71, 82, 233, 0.2);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer .social-link {
  color: var(--gray-light);
  margin-right: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.footer .social-link:hover {
  color: var(--primary-light);
}

/* Modal */
.modal-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

.modal-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Cookie Consent */
.cookie-popup {
  border-top: 3px solid var(--primary-color);
}

.cookie-popup p {
  margin-bottom: var(--spacing-sm);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light);
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

/* Additional pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: var(--spacing-lg) 0;
  }

  .hero-body {
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .event-date {
    position: static;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
  }
  
  .event-date .day, 
  .event-date .month {
    display: inline;
  }
  
  .event-date .month {
    margin-left: 5px;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item i {
    margin-bottom: var(--spacing-xs);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn var(--transition-normal);
}

.slide-up {
  animation: slideUp var(--transition-normal);
}

.scale-in {
  animation: scaleIn var(--transition-normal);
}

.title:not(.is-spaced)+.subtitle {
    margin-top: 0 !important;
}

.job-opportunities {
  margin-top: 40px;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
          
        }

        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .job-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .job-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .job-department {
            font-size: 0.9rem;
            opacity: 0.8;
            color: #a5b4fc;
        }

        .job-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .job-requirements {
            margin-bottom: 25px;
        }

        .requirements-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #e0e7ff;
        }

        .requirements-list {
            list-style: none;
            padding-left: 0;
        }

        .requirements-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: bold;
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .job-type {
            display: inline-block;
            background: rgba(79, 70, 229, 0.3);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .apply-btn {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            color: white !important;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
        }

        .contact-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .contact-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #e0e7ff;
        }

        .contact-info {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .contact-email {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .jobs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .job-card {
                padding: 25px;
            }
            
            .job-footer {
                flex-direction: column;
                gap: 15px;
            }
        }