/* Museum Learning Lab - Main Styles */

/* Color Variables */
:root {
  --deep-forest: #133a2e;
  --linen: #f7f2ea;
  --amber-accent: #f2a900;
  --plum: #5a2f5d;
  --slate: #3a3f46;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #2c2c2c;
  --success: #28a745;
  --error: #dc3545;
  --warning: #ffc107;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Center all headings and subheadings */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--slate);
  background-color: var(--linen);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--slate);
}

a {
  color: var(--deep-forest);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber-accent);
}

/* Buttons */
.btn-primary {
  background-color: var(--amber-accent);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #d49400;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(242, 169, 0, 0.3);
}

.btn-secondary {
  background-color: var(--plum);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #4a2650;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(90, 47, 93, 0.3);
}

.btn-link {
  color: var(--deep-forest);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--amber-accent);
}

/* Header */
.header {
  background-color: var(--deep-forest);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
  transform: scale(1.1);
}

.logo h1 {
  color: var(--linen);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.logo-link:hover h1 {
  color: var(--amber-accent);
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}
.collection-details {
  margin-bottom: 20px;
}

.nav-link {
  color: var(--linen);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--amber-accent);
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--linen);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--dark-gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Image Section */
.hero-image {
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-image-overlay h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image-overlay p {
  font-size: 1.2rem;
  max-width: 500px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--plum) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--linen);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-alt {
  background-color: var(--white);
}

/* Education, Collections, Research Sections */
.education-section,
.collections-section,
.research-section {
  padding: 80px 0;
  position: relative;
}

.education-section {
  background: var(--light-gray);
}

.collections-section {
  background: white;
}

.research-section {
  background: var(--light-gray);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text {
  padding: 20px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-icon {
  width: 60px;
  height: 60px;
}

.section-text h2 {
  color: var(--slate);
  font-size: 2.2rem;
  margin: 0;
}

.section-text p {
  color: var(--slate);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.section-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Grid Layouts */
.courses-grid,
.collections-grid,
.areas-grid,
.projects-grid,
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Cards */
.feature-card,
.course-card,
.collection-card,
.area-card,
.project-card,
.department-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.course-card:hover,
.collection-card:hover,
.area-card:hover,
.project-card:hover,
.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3,
.course-card h3,
.collection-card h3,
.area-card h3,
.project-card h3,
.department-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

/* Course Card Specific */
.course-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.course-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.course-title {
  flex: 1;
}

.course-title h3 {
  margin: 0;
  text-align: left;
}

.course-details {
  margin-bottom: 1.5rem;
}

.course-details p {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.course-meta span {
  background-color: var(--linen);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: var(--slate);
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: var(--slate);
}

.course-features .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-accent);
  margin: 1rem 0;
}

/* Collection Card Specific */
.collection-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--linen), var(--amber-accent));
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

/* Project Card Specific */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-status {
  background-color: var(--amber-accent);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-period {
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-team,
.project-partners {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Statistics */
.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--slate);
  font-weight: 600;
}

/* Forms */
.form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--deep-forest);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--linen);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber-accent);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.error-message {
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--linen);
  border-radius: 3px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--amber-accent);
  border-color: var(--amber-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 2px;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

/* Contact Information */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
}

.contact-content h3 {
  margin-bottom: 0.5rem;
  color: var(--deep-forest);
}

.schedule p {
  margin-bottom: 0.5rem;
}

/* Map */
.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--linen) 0%,
    var(--amber-accent) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--deep-forest);
}

.map-content h3 {
  margin-bottom: 1rem;
}

.map-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Publications */
.publications-filter {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--linen);
  background-color: var(--white);
  color: var(--slate);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--amber-accent);
  border-color: var(--amber-accent);
  color: var(--white);
}

.publication-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.publication-info h4 {
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.publication-authors {
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.publication-details {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.publication-description {
  color: var(--slate);
  font-size: 0.9rem;
}

/* Conferences */
.conferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.conference-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
}

.conference-date {
  text-align: center;
  background-color: var(--amber-accent);
  color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conference-date .month {
  font-size: 0.9rem;
  font-weight: 600;
}

.conference-date .day {
  font-size: 1.5rem;
  font-weight: 700;
}

.conference-date .year {
  font-size: 0.9rem;
}

.conference-content h3 {
  margin-bottom: 1rem;
}

.conference-details {
  margin: 1rem 0;
}

.conference-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* FAQ */
/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--linen);
}

.faq .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq .section-icon {
  width: 48px;
  height: 48px;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question h3 {
  margin: 0;
  color: var(--deep-forest);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: var(--white);
}

.faq-answer p {
  padding: 1.5rem 0;
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
  border-top: 1px solid var(--light-gray);
}

.faq-item.active .faq-answer {
  max-height: none !important;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  color: var(--white);
  padding: 1rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  background-color: var(--deep-forest);
  max-width: 800px;
  margin: 0 auto;
  display: grid;

  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
}

.cookie-content a {
  color: var(--amber-accent);
}

/* Footer */
.footer {
  background-color: var(--deep-forest);
  color: var(--linen);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--amber-accent);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--linen);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--amber-accent);
}
.footer-section p {
  color: var(--light-gray);
}
.footer-bottom p {
  color: var(--linen);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--linen);
}

.footer-bottom {
  border-top: 1px solid var(--plum);
  padding-top: 1rem;
  text-align: center;
  color: var(--linen);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--deep-forest);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--plum);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Typography Mobile */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* New Sections Mobile */
  .section-content,
  .section-content.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .section-text {
    text-align: center;
  }

  .section-text h2 {
    font-size: 1.8rem;
  }

  .section-image img {
    height: 250px;
  }

  /* Grids Mobile */
  .courses-grid,
  .collections-grid,
  .areas-grid,
  .projects-grid,
  .departments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .conferences-grid {
    grid-template-columns: 1fr;
  }

  .conference-card {
    flex-direction: column;
    text-align: center;
  }

  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Publications Mobile */
  .publication-item {
    flex-direction: column;
    gap: 1rem;
  }

  /* Cookie Popup Mobile */
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Map Mobile */
  .map-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Buttons Mobile */
  .map-buttons .btn-secondary {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .course-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--color-light);
}

.testimonials h2 {
  text-align: center;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-accent);
  position: absolute;
  left: -20px;
  top: -10px;
  font-family: serif;
}

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

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-photo .placeholder-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-plum));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.author-info p {
  color: var(--color-text);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-content p::before {
    left: -15px;
    font-size: 2.5rem;
  }
}

/* Thank You Page Styles */
.thank-you-hero {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-plum) 100%
  );
  color: white;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.thank-you-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.thank-you-message {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.thank-you-message p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.next-steps {
  margin: 60px 0;
}

.next-steps h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: white;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.step-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-reminder {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.contact-reminder h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.2rem;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.additional-info {
  padding: 80px 0;
  background: var(--color-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.info-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.info-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.social-link {
  padding: 10px 20px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-plum);
  transform: translateY(-2px);
}

.related-content {
  padding: 80px 0;
  background: white;
}

.related-content h2 {
  text-align: center;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.content-card {
  background: var(--color-light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.content-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.content-card p {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  background-color: var(--linen);
  padding: 4rem 0;
  text-align: center;
}

.statistics h2 {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--plum);
  margin-bottom: 0.5rem;
  text-align: center;
}

.stat-label {
  color: var(--deep-forest);
  font-weight: 500;
  text-align: center;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Section Headers with Icons */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin: 0 auto;
}

.section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--linen);
  padding: 4rem 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.advantage-item p {
  color: var(--plum);
  line-height: 1.6;
}

/* Utility Pages Styles */
.cookie-content,
.privacy-content,
.terms-content {
  padding: 1rem;
  background-color: white;
}

.cookie-sections,
.privacy-sections,
.terms-sections {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-section,
.privacy-section,
.terms-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--linen);
  border-radius: 10px;
  border-left: 4px solid var(--amber-accent);
}

.cookie-section h2,
.privacy-section h2,
.terms-section h2 {
  color: var(--deep-forest);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cookie-section h3,
.privacy-section h3,
.terms-section h3 {
  color: var(--plum);
  margin: 1.5rem 0 1rem;
  font-size: 1.2rem;
}

.cookie-section p,
.privacy-section p,
.terms-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--deep-forest);
}

.cookie-section ul,
.privacy-section ul,
.terms-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.cookie-section li,
.privacy-section li,
.terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--deep-forest);
}

.cookie-section strong,
.privacy-section strong,
.terms-section strong {
  color: var(--plum);
  font-weight: 600;
}

/* Contact Information in Utility Pages */
.contact-highlight {
  background-color: var(--amber-accent);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

.contact-highlight h3 {
  color: var(--white) !important;
  margin-bottom: 1rem;
}

.contact-highlight p {
  color: var(--white) !important;
  margin-bottom: 0.5rem;
}

.contact-highlight a {
  color: var(--white);
  text-decoration: underline;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.highlight {
  background-color: var(--sage-accent);
  color: var(--plum);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  justify-content: center;
  color: var(--slate);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Programs Section */
.programs {
  padding: 4rem 0;
  background-color: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--sage-accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--amber-accent));
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
  color: var(--plum);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.program-details {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.duration,
.level {
  background-color: var(--sage-accent);
  color: var(--plum);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Events Section */
.events {
  padding: 4rem 0;
  background-color: var(--cream);
}

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

.event-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--amber-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.event-date {
  text-align: center;
  background-color: var(--plum);
  color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  height: fit-content;
}

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

.event-date .month {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.event-content h3 {
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.event-time {
  color: var(--amber-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}
.gallery-subtitle {
  text-align: center;
  color: var(--slate);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Partners Section */
.partners {
  padding: 4rem 0;
  background-color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partner-card {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.partner-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--amber-accent));
  transition: width 0.3s ease;
}

.partner-card:hover::after {
  width: 80%;
}

.partner-card:hover {
  border-color: var(--sage-accent);
  transform: translateY(-3px);
}

.partner-card h3 {
  color: var(--plum);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* News Section */
.news {
  padding: 4rem 0;
  background-color: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--amber-accent), var(--plum));
  transition: width 0.3s ease;
}

.news-card:hover::before {
  width: 4px;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-date {
  color: var(--amber-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.news-link {
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--amber-accent);
}

/* Virtual Tours Section */
.virtual-tours {
  padding: 4rem 0;
  background-color: var(--white);
}

.virtual-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-card {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--sage-accent);
}

.tour-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-preview {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--plum), var(--amber-accent));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tour-placeholder {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tour-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tour-button {
  background: linear-gradient(135deg, var(--plum), var(--amber-accent));
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.tour-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-highlight a:hover {
  color: var(--linen);
}

/* Responsive adjustments for Thank You page */
@media (max-width: 768px) {
  .thank-you-hero h1 {
    font-size: 2rem;
  }

  .thank-you-subtitle {
    font-size: 1.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .info-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile styles for new sections */
  .stats-grid,
  .gallery-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 200px;
  }

  /* Mobile styles for utility pages */
  .cookie-section,
  .privacy-section,
  .terms-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .cookie-section h2,
  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.3rem;
  }

  .contact-highlight {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  /* Mobile styles for new sections */
  .feature-highlights {
    gap: 0.25rem;
    margin: 0.75rem 0;
  }

  .highlight {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .programs-grid,
  .events-grid,
  .partners-grid,
  .news-grid,
  .virtual-tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-card,
  .event-card,
  .partner-card,
  .news-card,
  .tour-card {
    padding: 1.5rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    align-self: center;
    margin-bottom: 1rem;
  }

  .program-details {
    justify-content: center;
    gap: 0.5rem;
  }

  .duration,
  .level {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .tour-preview {
    width: 80px;
    height: 80px;
  }

  .tour-placeholder {
    font-size: 1rem;
  }
}

/* Registration Form - Minimalist Style */
.registration {
  padding: 4rem 0;
  background-color: var(--white);
}

.registration h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--deep-forest);
  font-weight: 300;
  font-size: 2.5rem;
}

.registration-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: transparent;
  padding: 2rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--deep-forest);
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  background-color: transparent;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom: 2px solid var(--plum);
  padding-bottom: calc(1rem - 1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
  font-style: italic;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  border-bottom: 1px solid var(--light-gray);
  border-top: 1px solid var(--light-gray);
  padding: 1rem 0;
}

.form-group textarea:focus {
  border-top: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  padding-top: calc(1rem - 1px);
  padding-bottom: calc(1rem - 1px);
}

.submit-btn {
  width: 100%;
  background-color: transparent;
  color: var(--deep-forest);
  padding: 1rem 0;
  border: 2px solid var(--deep-forest);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: var(--deep-forest);
  color: var(--white);
}

/* Collections Carousel Styles */
.collections-carousel {
  position: relative;
  margin: 3rem 0;
  padding: 0 60px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.collection-card {
  display: flex;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
}

.collection-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.collection-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.collection-content h3 {
  color: var(--deep-forest);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.collection-content p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.collection-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.collection-stats .stat {
  background-color: var(--plum);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  border: 2px solid var(--plum);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: var(--plum);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--plum);
  transform: scale(1.2);
}

.indicator:hover {
  background-color: var(--amber-accent);
}

/* Collections CTA */
.collections-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Mobile Responsive Styles for Carousel */
@media (max-width: 768px) {
  .collections-carousel {
    padding: 0 40px;
  }

  .collection-card {
    flex-direction: column;
    min-height: auto;
  }

  .collection-image {
    height: 250px;
  }

  .collection-content {
    padding: 2rem;
  }

  .collection-content h3 {
    font-size: 1.5rem;
  }

  .collection-content p {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .collections-carousel {
    padding: 0 30px;
  }

  .collection-content {
    padding: 1.5rem;
  }

  .collection-stats {
    gap: 0.5rem;
  }

  .collection-stats .stat {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* About Page Styles */

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  padding: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.section-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--deep-forest));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(360deg);
}

.value-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.value-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Partnerships Section */
.partnerships-section {
  padding: 5rem 0;
  background: white;
}

.partnerships-content {
  margin-top: 3rem;
}

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

.partnership-text p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--plum);
  transition: all 0.3s ease;
  position: relative;
}

.partner-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--deep-forest);
}

.partner-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.partner-card p {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-stats {
  display: flex;
  gap: 1rem;
}

.partner-stats .stat {
  background: var(--plum);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Innovation Section */
.innovation-section {
  padding: 5rem 0;
  color: #133a2e;
}

.innovation-section .section-header h2 {
  color: var(--deep-forest);
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.innovation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.innovation-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.innovation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.innovation-icon img {
  width: 40px;
  height: 40px;
}

.innovation-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.innovation-card p {
  line-height: 1.6;
  opacity: 0.9;
}

/* Experience Section */
.experience-section {
  padding: 5rem 0;
  background: white;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.experience-item {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.experience-item:hover {
  border-color: var(--plum);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.experience-item h3 {
  color: var(--deep-forest);
  margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.experience-item p {
  color: var(--slate);
  line-height: 1.6;
}

/* Future Section */
.future-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
}

.future-timeline {
  margin-top: 3rem;
  position: relative;
}

.future-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--plum), var(--deep-forest));
  transform: translateX(-50%);
}

.future-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.future-item:nth-child(odd) {
  flex-direction: row;
}

.future-item:nth-child(even) {
  flex-direction: row-reverse;
}

.future-year {
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.future-details {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 0 2rem;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.future-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.future-details h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.future-details p {
  color: var(--slate);
  line-height: 1.6;
}

/* Enhanced Statistics Section */
.statistics .section-header {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--deep-forest));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--slate);
  font-size: 1rem;
  font-weight: 500;
}

/* Enhanced Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
}

.member-name {
  color: var(--deep-forest);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-position {
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.achievement {
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section-icon {
    width: 50px;
    height: 50px;
  }

  .values-grid,
  .partnerships-grid,
  .innovation-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .future-timeline::before {
    left: 30px;
  }

  .future-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }

  .future-year {
    position: absolute;
    left: 0;
    min-width: 80px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .future-details {
    margin: 0;
    margin-top: 1rem;
  }

  .experience-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* History Section Styles */
.history-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.history-content {
  max-width: 1000px;
  margin: 0 auto;
}

.history-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--slate);
  margin: 0;
}

.history-timeline {
  position: relative;
  margin: 4rem 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #133a2e, #2c5f4f);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 0 0 100px;
  background: #133a2e;
  color: white;
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 2rem;
}

.timeline-year::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #133a2e;
  border: 4px solid white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-year::before {
  right: -42px;
}

.timeline-item:nth-child(even) .timeline-year::before {
  left: -42px;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  color: #133a2e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.history-mission {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 4rem;
}

.history-mission h3 {
  color: #133a2e;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.history-mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  margin: 0;
}

/* Mobile Responsive for History Section */
@media (max-width: 768px) {
  .history-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    margin-left: 60px;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column !important;
  }

  .timeline-year {
    position: absolute;
    left: -90px;
    top: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .timeline-year::before {
    right: -42px !important;
    left: auto !important;
  }

  .timeline-content {
    margin-left: 0;
  }

  .history-mission {
    padding: 2rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .history-section {
    padding: 3rem 0;
  }

  .timeline-item {
    margin-left: 40px;
  }

  .timeline-year {
    left: -70px;
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .history-mission {
    padding: 1.5rem;
  }

  .history-mission h3 {
    font-size: 1.5rem;
  }
}

/* New Sections for Courses Page */

/* Section Header with Icon */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.section-header:hover .section-icon {
  transform: scale(1.1);
}

/* Teaching Methods Section */
.teaching-methods {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.method-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--plum);
}

.method-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.method-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1rem;
}

/* Teachers Section */
.teachers {
  padding: 5rem 0;
  background: white;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.teacher-card {
  background: linear-gradient(135deg, var(--linen) 0%, white 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
  overflow: hidden;
}

.teacher-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--deep-forest));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.teacher-card:hover::before {
  transform: scaleX(1);
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.teacher-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.teacher-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1rem;
}

/* Certification Section */
.certification {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--plum) 100%);
  color: white;
}

.certification .section-header h2 {
  color: white;
}

.certification .section-icon {
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.certification-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cert-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cert-info:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.cert-info h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.cert-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

/* Career Section */
.career {
  padding: 5rem 0;
  background: white;
}

.career-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.career-card {
  background: linear-gradient(135deg, var(--linen) 0%, white 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
}

.career-card::after {
  content: "→";
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--plum);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.career-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--plum);
}

.career-card h3 {
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.career-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--linen) 100%);
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--plum);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.student-info {
  border-top: 1px solid rgba(139, 69, 19, 0.1);
  padding-top: 1.5rem;
}

.student-info strong {
  color: var(--deep-forest);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.student-info span {
  color: var(--plum);
  font-size: 0.9rem;
}

/* Enhanced Course Cards Interactivity */
.course-card {
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.course-card:hover::before {
  left: 100%;
}

.course-card:hover .course-price {
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  color: white;
  transform: scale(1.05);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-icon {
    width: 50px;
    height: 50px;
  }

  .methods-grid,
  .teachers-grid,
  .certification-content,
  .career-paths,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .method-card,
  .teacher-card,
  .cert-info,
  .career-card,
  .testimonial-card {
    padding: 2rem;
  }

  .teaching-methods,
  .teachers,
  .certification,
  .career,
  .testimonials {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .method-card,
  .teacher-card,
  .cert-info,
  .career-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
}

/* Museum Services Section */
.museum-services {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--linen) 0%, #f0f4f8 100%);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-accent), var(--plum));
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 0;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--deep-forest);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--slate);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: var(--slate);
  position: relative;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-accent);
  font-weight: bold;
}

.service-card:hover .service-features li {
  color: var(--deep-forest);
}

/* Digital Collections Section */
.digital-collections {
  padding: 80px 0;
  background: var(--white);
}

.digital-content {
  display: block;
  margin-top: 50px;
}

.digital-info {
  animation: slideInLeft 0.8s ease-out;
  text-align: center;
}

.digital-info h3 {
  color: var(--deep-forest);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.digital-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--amber-accent);
  transform: translateY(-5px);
}

.feature-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--deep-forest);
  margin-bottom: 5px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--slate);
}

.feature-item:hover .feature-number,
.feature-item:hover .feature-text {
  color: var(--white);
}

.digital-preview {
  animation: slideInRight 0.8s ease-out;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.preview-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.preview-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Research Center Section */
.research-center {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--linen) 100%);
}

.research-content {
  display: block;
  margin-top: 50px;
}

.research-info {
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
  margin-bottom: 40px;
}

.research-equipment {
  margin-top: 30px;
}

.equipment-item {
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--amber-accent);
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.equipment-item h4 {
  color: var(--deep-forest);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.research-projects {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.project-list {
  margin-top: 20px;
}

.project-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-title {
  font-weight: 500;
  color: var(--deep-forest);
}

.project-status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #d4edda;
  color: #155724;
}

/* Conservation Workshop Section */
.conservation-workshop {
  padding: 80px 0;
  background: var(--white);
}

.workshop-content {
  display: block;
  margin-top: 50px;
}

.workshop-info {
  animation: slideInRight 0.8s ease-out;
  text-align: center;
}

.workshop-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-block {
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-block:hover {
  background: var(--amber-accent);
  transform: translateY(-5px);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--deep-forest);
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--slate);
}

.stat-block:hover .stat-value,
.stat-block:hover .stat-desc {
  color: var(--white);
}

.workshop-services {
  margin-top: 30px;
}

.workshop-services h4 {
  color: var(--deep-forest);
  margin-bottom: 15px;
}

.workshop-services ul {
  list-style: none;
}

.workshop-services li {
  padding: 8px 0;
  color: var(--slate);
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
}

.workshop-services li::before {
  content: "🔧";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.workshop-services li:hover {
  color: var(--deep-forest);
  transform: translateX(5px);
}

/* Keyframe Animations for Collections Page */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .digital-content,
  .research-content,
  .workshop-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-features,
  .workshop-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Current Exhibitions Section */
.current-exhibitions {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.current-exhibitions h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--deep-forest);
  margin-bottom: 60px;
  position: relative;
}

.current-exhibitions h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  border-radius: 2px;
}

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

.exhibition-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

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

.exhibition-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.exhibition-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.exhibition-content {
  padding: 30px;
}

.exhibition-content h3 {
  font-size: 1.5rem;
  color: var(--deep-forest);
  margin-bottom: 15px;
  font-weight: 600;
}

.exhibition-dates {
  color: var(--plum);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.exhibition-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.btn-link:hover {
  color: var(--deep-forest);
  transform: translateX(5px);
}

.btn-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Virtual Tour Section */
.virtual-tour {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--plum) 100%);
  color: var(--white);
}

.tour-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tour-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.tour-content > p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.tour-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.feature p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Enhanced Collection Statistics */
.collection-stats {
  padding: 80px 0;
  background: var(--white);
}

.collection-stats h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--deep-forest);
  margin-bottom: 60px;
  position: relative;
}

.collection-stats h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  border-radius: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--plum), var(--deep-forest));
  border-radius: 20px;
  color: var(--white);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  animation: countUp 2s ease-out;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .current-exhibitions h2,
  .collection-stats h2,
  .tour-content h2 {
    font-size: 2rem;
  }

  .exhibitions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exhibition-card {
    margin: 0 20px;
  }

  .tour-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .digital-content,
  .research-content,
  .workshop-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-features,
  .workshop-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .current-exhibitions,
  .virtual-tour,
  .collection-stats {
    padding: 60px 0;
  }
}

/* Collection Icons */
.collection-icon {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 25px;
  display: block;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collection-card:hover .collection-icon {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Research Page Styles */

/* Research Methods Section */
.research-methods {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.research-methods h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.method-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.method-card:hover::before {
  transform: scaleX(1);
}

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

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.method-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.method-card:hover .method-icon {
  transform: scale(1.1) rotate(10deg);
}

.method-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.method-card p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.method-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.method-card li {
  padding: 8px 0;
  color: #495057;
  position: relative;
  padding-left: 25px;
}

.method-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* International Cooperation Section */
.international-cooperation {
  padding: 80px 0;
  background: white;
}

.international-cooperation h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.cooperation-intro {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
}

.cooperation-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  flex-shrink: 0;
}

.cooperation-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.cooperation-intro p {
  font-size: 1.2rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.partner-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.partner-card ul {
  list-style: none;
  padding: 0;
}

.partner-card li {
  padding: 8px 0;
  color: #6c757d;
  border-bottom: 1px solid #f1f3f4;
  transition: color 0.3s ease;
}

.partner-card li:hover {
  color: #3498db;
}

.partner-card li:last-child {
  border-bottom: none;
}

/* Research Equipment Section */
.research-equipment {
  padding: 80px 0;
}

.research-equipment h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.equipment-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.equipment-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.equipment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.equipment-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.equipment-card:hover .equipment-icon {
  transform: scale(1.1) rotate(-10deg);
}

.equipment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.equipment-card p {
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.6;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.equipment-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.equipment-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Research Training Section */
.research-training {
  padding: 80px 0;
  background: white;
}

.research-training h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

.training-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.program-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9b59b6, #8e44ad);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

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

.program-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.program-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.program-card:hover .program-icon {
  transform: scale(1.1) rotate(15deg);
}

.program-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.program-card p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.program-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.detail-item {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

/* Research Impact Section */
.research-impact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.research-impact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.impact-intro {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 50%;
  flex-shrink: 0;
}

.impact-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.impact-intro p {
  font-size: 1.2rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}

.impact-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.impact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.impact-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.impact-card p {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.impact-metrics {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.metric {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.metric:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

/* Responsive Design for Research Page */
@media (max-width: 768px) {
  .research-methods h2,
  .international-cooperation h2,
  .research-equipment h2,
  .research-training h2,
  .research-impact h2 {
    font-size: 2rem;
  }

  .methods-grid,
  .equipment-grid,
  .training-programs {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partners-grid,
  .impact-areas {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cooperation-intro,
  .impact-intro {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .method-card,
  .equipment-card,
  .program-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .research-methods,
  .international-cooperation,
  .research-equipment,
  .research-training,
  .research-impact {
    padding: 60px 0;
  }

  .cooperation-intro,
  .impact-intro {
    padding: 30px 20px;
  }

  .partner-card,
  .impact-card {
    padding: 25px 20px;
  }
}

/* Contacts Page Enhanced Styles */

/* Map Section Styles */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-info {
  padding: 40px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
}

.location-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.location-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.coordinates {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 10px;
}

.map-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.map-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.map-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.interactive-map {
  position: relative;
}

.interactive-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 0 20px 20px 0;
}

/* Contact Information Enhanced Styles */
.contact-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-details h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-left-color: #3498db;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-svg-icon {
  width: 24px;
  height: 24px;
}

.contact-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.contact-content a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: #2980b9;
}

.schedule p {
  margin-bottom: 8px;
}

/* Contact Form Enhanced Styles */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.contact-form-container h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Departments Section Enhanced Styles */
.departments {
  padding: 80px 0;
}

.departments h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
}

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

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

.department-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.department-card:hover::before {
  transform: scaleX(1);
}

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

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

.department-icon {
  width: 40px;
  height: 40px;

  transition: all 0.3s ease;
}

.department-card:hover .department-icon {
  transform: scale(1.1) rotate(5deg);
}

.department-header h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.department-contact {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.department-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* FAQ Section Enhanced Styles */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.section-icon {
  width: 50px;
  height: 50px;
  filter: hue-rotate(200deg);
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-icon {
  width: 24px;
  height: 24px;
  filter: hue-rotate(200deg);
  flex-shrink: 0;
}

.faq-question h3 {
  flex: 1;
  margin: 0;
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.faq-answer {
  padding: 0 30px 25px;
  color: #6c757d;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thank You Page Enhanced Styles */
.thank-you-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.thank-you-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 30px;
  animation: bounceIn 1s ease;
}

.thank-you-icon img {
  width: 100px;
  height: 100px;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.3s both;
}

.thank-you-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

.thank-you-message {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease 0.9s both;
}

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

/* Next Steps Section */
.next-steps {
  margin: 60px 0;
  animation: fadeInUp 1s ease 1.2s both;
}

.next-steps h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Contact Reminder Section */
.contact-reminder {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  margin: 50px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease 1.5s both;
}

.contact-reminder h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.2rem;
}

/* Thank You Actions */
.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.8s both;
}

.thank-you-actions .btn {
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thank-you-actions .btn-primary {
  background: white;
  color: #3498db;
}

.thank-you-actions .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.thank-you-actions .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.thank-you-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Additional Info Section */
.additional-info {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #3498db;
}

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

.info-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  padding: 10px 20px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Related Content Section */
.related-content {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.related-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.content-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.content-card p {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-outline {
  padding: 12px 25px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design for Contacts and Thank You Pages */
@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-hero h1 {
    font-size: 2.2rem;
  }

  .info-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .department-header {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .map-info {
    padding: 25px;
  }

  .contact-form-container {
    padding: 25px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}
