:root {
  /* Primary Colors */
  --primary-color: #2b4c7e;
  --primary-dark: #1c3252;
  --primary-light: #5b7ea5;
  
  /* Secondary Colors */
  --secondary-color: #e67e22;
  --secondary-dark: #d35400;
  --secondary-light: #f39c12;
  
  /* Neutral Colors */
  --neutral-100: #f8f9fa;
  --neutral-200: #e9ecef;
  --neutral-300: #dee2e6;
  --neutral-400: #ced4da;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Accent Colors */
  --accent-success: #2ecc71;
  --accent-info: #3498db;
  --accent-warning: #f1c40f;
  --accent-danger: #e74c3c;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-width: 2px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral-100);
}

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

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

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

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

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.py-1 { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-2 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-3 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-4 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-5 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.px-1 { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-2 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-3 { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-4 { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-5 { padding-left: var(--space-xl); padding-right: var(--space-xl); }

/* ========== Button Styles ========== */
.button, button, input[type="submit"] {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: var(--border-width) solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button:active, button:active, input[type="submit"]:active {
  transform: translateY(-1px);
}

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

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

.button.is-light {
  background-color: var(--neutral-200);
  color: var(--neutral-800);
}

.button.is-light:hover {
  background-color: var(--neutral-300);
}

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

.button.is-rounded {
  border-radius: 2rem;
}

.button.is-large {
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
}

/* Button morphing effect */
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scale(0);
  transition: transform var(--transition-normal);
  border-radius: 50%;
}

.button:hover::before {
  transform: scale(2);
}

/* ========== Header & Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.is-transparent {
  background-color: #fff;
}

.navbar-item {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  position: relative;
}

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

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

/* ========== Hero Section ========== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-body {
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
}

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

.hero .title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-foot {
  padding-bottom: 2rem;
  animation: bounce 2s infinite;
}

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

/* ========== Our Process Section ========== */
.process-box {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  overflow: hidden;
  position: relative;
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 4px;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  animation: scaleVertical 1.5s forwards 0.5s;
}

@keyframes scaleVertical {
  to {
    transform: scaleY(1);
  }
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transform: scale(0);
  animation: scaleIn 0.5s forwards;
}

.process-step:nth-child(1) .process-number { animation-delay: 0.7s; }
.process-step:nth-child(2) .process-number { animation-delay: 1.0s; }
.process-step:nth-child(3) .process-number { animation-delay: 1.3s; }
.process-step:nth-child(4) .process-number { animation-delay: 1.6s; }
.process-step:nth-child(5) .process-number { animation-delay: 1.9s; }

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

.process-content {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transform: translateX(50px);
  opacity: 1;
  animation: slideIn 0.5s forwards;
}

.process-step:nth-child(1) .process-content { animation-delay: 0.8s; }
.process-step:nth-child(2) .process-content { animation-delay: 1.1s; }
.process-step:nth-child(3) .process-content { animation-delay: 1.4s; }
.process-step:nth-child(4) .process-content { animation-delay: 1.7s; }
.process-step:nth-child(5) .process-content { animation-delay: 2.0s; }

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========== Instructors Section ========== */
.instructor-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

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

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

.instructor-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructor-card .title {
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.instructor-card .subtitle {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.instructor-card p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

/* ========== Projects Section ========== */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

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

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

.project-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-card .title {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.project-card p {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.project-card .button {
  align-self: flex-start;
  margin-top: auto;
}

/* ========== Portfolio Section ========== */
.portfolio-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

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

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

.portfolio-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card .title {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.portfolio-card p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

/* ========== Pricing Section ========== */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

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

.pricing-card.is-featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.is-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .card-content {
  padding: 3rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card .title {
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}

.pricing-figure {
  margin-bottom: 2rem;
  position: relative;
}

.pricing-figure .currency {
  font-size: 1.5rem;
  position: relative;
  top: -1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-figure .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
}

.pricing-figure .period {
  font-size: 1rem;
  color: var(--neutral-600);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features .feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-700);
}

.pricing-features .feature:last-child {
  border-bottom: none;
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

/* ========== Testimonials Section ========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: white;
}

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

.testimonial-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card .media {
  margin-bottom: 1.5rem;
}

.testimonial-card .media-left {
  margin-right: 1.5rem;
}

.testimonial-card .image {
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.testimonial-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .subtitle {
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-card .content p {
  color: var(--neutral-700);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-rating {
  margin-top: 1rem;
  color: var(--secondary-color);
}

/* ========== Events Section ========== */
.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

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

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

.event-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card .event-date {
  position: absolute;
  top: -50px;
  left: 20px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.event-card .event-day {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.event-card .event-month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.event-card .title {
  color: var(--neutral-900);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.event-card p {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.event-card .event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-600);
}

.event-card .event-location,
.event-card .event-time {
  display: flex;
  align-items: center;
}

.event-card .event-location i,
.event-card .event-time i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.event-card .button {
  align-self: flex-start;
  margin-top: auto;
}

/* ========== Contact Section ========== */
.contact-card,
.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: white;
}

.contact-card .card-content,
.info-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-card .field {
  margin-bottom: 1.5rem;
}

.contact-card .label {
  color: var(--neutral-800);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card .input,
.contact-card .textarea,
.contact-card .select select {
  border: 2px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition-fast);
}

.contact-card .input:focus,
.contact-card .textarea:focus,
.contact-card .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-light);
}

.info-card .title {
  margin-bottom: 1.5rem;
}

.info-card .contact-info {
  margin-bottom: 2rem;
}

.info-card .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.info-card .info-item .icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.info-card .social-links .button {
  flex: 1 0 auto;
}

/* ========== Footer ========== */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--neutral-400);
  margin-bottom: 2rem;
}

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

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer ul li a:hover {
  color: white;
}

.footer .social-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer .social-links a:hover {
  color: white;
}

.footer .has-text-centered {
  border-top: 1px solid var(--neutral-700);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* ========== Success Page ========== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-success);
  margin-bottom: 2rem;
}

.success-page .title {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.success-page .subtitle {
  color: var(--neutral-700);
  margin-bottom: 2rem;
}

/* ========== Privacy & Terms Pages ========== */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-page .content,
.terms-page .content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.privacy-page h1,
.terms-page h1 {
  color: var(--neutral-900);
  margin-bottom: 2rem;
}

.privacy-page h2,
.terms-page h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-page p,
.terms-page p {
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.privacy-page ul,
.terms-page ul {
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

/* ========== Responsive Styles ========== */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: white;
    box-shadow: var(--shadow-md);
  }
  
  .navbar-item {
    color: var(--neutral-800);
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .process-box {
    padding: 1.5rem;
  }
  
  .process-step {
    padding-left: 50px;
  }
  
  .process-timeline::before {
    left: 25px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-content {
    padding: 1.5rem;
  }
  
  .pricing-card.is-featured {
    transform: scale(1);
  }
  
  .pricing-card.is-featured:hover {
    transform: translateY(-10px);
  }
}

/* ========== Animations ========== */
[data-aos] {
  opacity: 1;
  transition-property: transform, opacity;
}

[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);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(15deg);
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

/* ========== Cookie Consent ========== */
#cookieConsent {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  box-shadow: var(--shadow-lg);
}

#cookieConsent p {
  margin-bottom: 0;
}

#acceptCookies {
  background-color: var(--accent-success);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: #27ae60;
}

/* ========== Image Container Styles ========== */
.image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.image-container img {
  margin: 0 auto;
  display: block;
}

/* ========== About Page ========== */
.about-page {
  padding-top: 100px;
}

.about-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.about-hero .title,
.about-hero .subtitle {
  color: white;
  position: relative;
  z-index: 1;
}

.about-content {
  padding: 4rem 0;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
}

.team-member .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.team-member .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member .bio {
  color: var(--neutral-700);
}

/* ========== Brutalism Elements ========== */
.brutalism-element {
  position: relative;
  overflow: hidden;
}

.brutalism-element::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  z-index: 1;
}

.brutalism-card {
  border: 3px solid var(--neutral-900);
  box-shadow: 8px 8px 0 var(--neutral-700);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brutalism-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--neutral-700);
}

/* ========== Curved Grid Elements ========== */
.curved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.curved-grid-item {
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(var(--random-rotate));
  transition: transform var(--transition-normal);
}

.curved-grid-item:hover {
  transform: rotate(0) scale(1.05);
}

.curved-grid-item:nth-child(odd) {
  --random-rotate: -1deg;
}

.curved-grid-item:nth-child(even) {
  --random-rotate: 1deg;
}

.curved-grid-item:nth-child(3n) {
  --random-rotate: 2deg;
}

.curved-grid-item:nth-child(3n+1) {
  --random-rotate: -2deg;
}

/* ========== Morphing Elements ========== */
.morphing-element {
  position: relative;
  overflow: hidden;
}

.morphing-element::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(0);
  transition: transform 1s ease;
}

.morphing-element:hover::before {
  transform: rotate(45deg);
}

/* ========== Read More Links ========== */
.read-more {
  display: inline-block;
  position: relative;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  padding-right: 1.5rem;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}