/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-color: #f59e0b;
  --background-color: #ffffff;
  --text-color: #111827;
  --secondary-color: #fef3c7;
  --hover-color: #d97706;
}

/* Cookie Popup Enhanced */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  max-width: 600px;
  width: 90%;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}

.cookie-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cookie-text h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.cookie-text p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.cookie-text p:last-child {
  margin-bottom: 0;
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-policy-link:hover {
  color: #667eea;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-accept {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  white-space: nowrap;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

.btn-decline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Cookie Popup */
@media (max-width: 768px) {
  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    max-width: none;
    width: auto;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .cookie-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .btn-accept,
  .btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Header */
.header {
  background-color: var(--background-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo h1 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--text-color);
}

.logo h1 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo h1 a:hover {
  color: var(--primary-color);
}

.logo p {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

nav ul {
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

/* Navigation Styles - Redesigned */
.navigation {
  position: relative;
}

.navigation ul {
  display: flex;
  list-style: none;

  margin: 0;
  padding: 0;
  align-items: center;
}

.navigation li {
  position: relative;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
}

.navigation a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.navigation a:hover::before,
.navigation a.active::before {
  left: 0;
}

.navigation a:hover,
.navigation a.active {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Mobile Menu Toggle - Redesigned */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--text-color);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

/* Animated Hamburger to X */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile Menu Overlay - Base Styles */
.mobile-menu-overlay {
  display: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--hover-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  background: url("../images/studyforum.jpg") no-repeat center center/cover;
  padding: 80px 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--background-color);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: var(--text-color);
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.stats-grid .stat-number {
  color: white;
}
.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Latest Articles Section */
.latest-articles {
  padding: 80px 0;
  background: white;
}

.latest-articles h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 25px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.article-date {
  color: var(--text-color);
  opacity: 0.7;
}

.article-category {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.article-content h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--secondary-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.author-role {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Registration Section */
.registration {
  background-color: var(--secondary-color);
  padding: 80px 0;
  text-align: center;
}

.registration h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.registration p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  opacity: 0.8;
}

.registration-form {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.registration-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
  transform: translateY(-2px);
}

.form-group input::placeholder {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder {
  opacity: 0.7;
  transform: translateY(-2px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); */
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select:focus {
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234a90e2' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); */
  outline: none;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

/* Remove default select styling for all browsers */
.form-group select::-ms-expand {
  display: none;
}

/* Error states for form elements */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  border-color: #ef4444;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.25);
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}

.btn-primary::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;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 50px 0 20px;
}

.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(--primary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

/* Page Styles */
.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

.page-content {
  /* padding: 80px 0; */
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.contact-form h3 {
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
  transform: translateY(-2px);
}

.form-group textarea::placeholder {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.form-group textarea:focus::placeholder {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* Custom Checkbox Styles */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.custom-checkbox {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  line-height: 1.5;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease-in-out;
}

.custom-checkbox:checked + .checkbox-label .checkmark {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.custom-checkbox:checked + .checkbox-label .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  transform: scale(1.05);
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #667eea;
  text-decoration: underline;
}

/* Learning Tips Page Styles */
.learning-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.learning-section {
  padding: 80px 0;
}

.learning-section.alt-bg {
  background-color: var(--secondary-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Techniques Grid */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.technique-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.technique-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.technique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.technique-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.technique-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.technique-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

/* Organization List */
.organization-list {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.org-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.org-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.org-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.org-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.org-content p {
  color: var(--text-color);
  opacity: 0.7;
}

/* Motivation Grid */
.motivation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.motivation-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.motivation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.motivation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.motivation-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.example {
  background: var(--secondary-color);
  padding: 1rem;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-color);
  opacity: 0.9;
}

/* Info Work Grid */
.info-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.info-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

/* Challenges Grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.challenge-item {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.challenge-item:nth-child(2) {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.challenge-item:nth-child(3) {
  background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

.challenge-item:nth-child(4) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.challenge-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.challenge-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.challenge-item p {
  opacity: 0.9;
  line-height: 1.5;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tool-category {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.tool-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-left-width: 6px;
}

.tool-category h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

.tool-category h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  border-radius: 1px;
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Tool items in tools grid */
.tools-grid .tool-item {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tools-grid .tool-item:hover {
  background: linear-gradient(135deg, #667eea 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--text-color) 0%, #2c3e50 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content a {
  width: 300px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Experience Page Styles */
.experience-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.experience-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.experience-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Success Story Section */
.success-story {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.story-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.story-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.story-header h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin: 0;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-color);
  opacity: 0.9;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Case Study Section */
.case-study {
  padding: 80px 0;
}

.case-header {
  text-align: center;
  margin-bottom: 4rem;
}

.case-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.case-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.case-content {
  max-width: 1000px;
  margin: 0 auto;
}

.expert-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expert-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-placeholder {
  font-size: 1.8rem;
  font-weight: 700;
}

.expert-info h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.expert-info p {
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.expertise-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.case-results h4 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.result-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.result-text {
  color: var(--text-color);
  line-height: 1.5;
}

.expert-quote {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.expert-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.expert-quote cite {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Distance Learning Section */
.distance-learning {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.methodology-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.methodology-header {
  margin-bottom: 3rem;
}

.expert-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expert-avatar-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.expert-details h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 0 0 0.3rem 0;
}

.expert-details p {
  color: var(--text-color);
  opacity: 0.7;
  margin: 0;
}

.methodology-header h3 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 0;
}

.methodology-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
}

/* International Experience Section */
.international-experience {
  padding: 80px 0;
}

.countries-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.country-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.country-flag {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.country-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.country-focus {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.country-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.key-insights {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.insight-tag {
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.delegation-report {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.report-header h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin: 0;
}

.report-badge {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.report-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* Experience CTA Section */
.experience-cta {
  background: linear-gradient(135deg, var(--text-color) 0%, #2c3e50 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.experience-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.experience-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Next Steps Timeline Styles */
.next-steps-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.next-steps-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.next-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.steps-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.next-steps-header h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.steps-timeline {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -12px;
  width: 2px;
  height: 12px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.step-content {
  flex: 1;
}

.step-content h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.step-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.step-time {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Google Maps Container */
.google-map-container {
  margin: 2rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-wrapper {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.google-map,
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 20px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  transition: all 0.3s ease;
}

.map-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
  flex-shrink: 0;
}

.location-details h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.location-details p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0 0 0.3rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.location-details p:last-child {
  margin-bottom: 0;
}

/* Map Loading State */
.google-map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  z-index: 10;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
  .map-overlay {
    position: static;
    margin-top: 1rem;
    max-width: none;
    border-radius: 15px;
  }

  .google-map-container {
    border-radius: 15px;
  }

  .map-wrapper {
    height: 350px;
    border-radius: 15px;
  }

  .location-info {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* About Page Sections Styles */

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.partner-card h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.partner-type {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(74, 144, 226, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  display: inline-block;
}

/* Social Responsibility Section */
.social-responsibility {
  padding: 80px 0;
}

.social-projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.project-content h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.project-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-status {
  background: #10b981;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

/* Development Plans Section */
.development-plans {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.timeline {
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #667eea);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
  max-width: 400px;
}

.timeline-content h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.plans-grid {
  display: grid;
  gap: 1.5rem;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.plan-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plan-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.plan-item h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.plan-item p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Join Us Section */
.join-us-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
}

.join-us-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.join-us-text {
  flex: 1;
}

.join-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.join-us-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.join-us-visual {
  flex-shrink: 0;
}

.join-circle {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.join-icon {
  font-size: 4rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design for About Sections */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .social-projects {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .timeline-content {
    margin: 0;
    max-width: none;
  }

  .join-us-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .join-us-text h2 {
    font-size: 2rem;
  }

  .join-circle {
    width: 120px;
    height: 120px;
  }

  .join-icon {
    font-size: 3rem;
  }
}

/* Research Page Styles */

/* Research Study Section */
.research-study {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.study-header {
  text-align: center;
  margin-bottom: 3rem;
}

.study-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.study-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin: 0;
  font-weight: 700;
}

.study-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.meta-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.meta-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.meta-content h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.meta-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.study-results {
  margin-bottom: 4rem;
}

.study-results h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  font-weight: 600;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.result-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.result-percentage {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.result-text h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.result-text p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

.study-conclusion {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-color);
}

.conclusion-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.conclusion-content h4 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.conclusion-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
}

/* Neuroscience Section */
.neuroscience-section {
  padding: 80px 0;
}

.discoveries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.discovery-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.discovery-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.discovery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.discovery-card:hover::after {
  left: 100%;
}

.discovery-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.discovery-content h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.discovery-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.discovery-tag {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

/* Responsive Design for Research Sections */
@media (max-width: 768px) {
  .study-meta {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .discoveries-grid {
    grid-template-columns: 1fr;
  }

  .study-conclusion {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .meta-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .result-percentage {
    font-size: 2.5rem;
  }

  .study-header h2 {
    font-size: 2rem;
  }
}

/* Additional Research Page Styles */

/* Motivation Research Section */
.motivation-research {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.motivation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.motivation-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.motivation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.motivation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.motivation-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.motivation-content h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.motivation-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.motivation-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}

/* Future Education Section */
.future-education {
  padding: 80px 0;
}

.future-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.future-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #667eea);
  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(--primary-color) 0%, #667eea 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.future-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
  max-width: 350px;
  transition: all 0.3s ease;
}

.future-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.future-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.future-card h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.future-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.future-progress {
  background: var(--secondary-color);
  height: 8px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}

/* Research Methodology Section */
.research-methodology {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.method-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.method-content h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.method-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.method-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Publications and Partnerships Section */
.publications-partnerships {
  padding: 80px 0;
}

.partnerships-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.publications-block,
.partners-block {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.publications-block h3,
.partners-block h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.publication-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

.partners-list {
  display: grid;
  gap: 1.5rem;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  font-size: 2rem;
  flex-shrink: 0;
}

.partner-info h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partner-info p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Participate Section */
.participate-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
}

.participate-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.participate-text {
  flex: 1;
}

.participate-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.participate-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.participation-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-text p {
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.participate-visual {
  flex-shrink: 0;
}

.research-circle {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.research-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.research-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive Design for Additional Research Sections */
@media (max-width: 768px) {
  .motivation-types {
    grid-template-columns: 1fr;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .partnerships-container {
    grid-template-columns: 1fr;
  }

  .future-timeline::before {
    left: 30px;
  }

  .future-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .future-year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .future-card {
    margin: 0;
    max-width: none;
  }

  .participate-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .participate-text h2 {
    font-size: 2rem;
  }

  .research-circle {
    width: 150px;
    height: 150px;
  }

  .research-icon {
    font-size: 3rem;
  }

  .motivation-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .publication-stats {
    grid-template-columns: 1fr;
  }
}

/* Learning Tips Page Styles */

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Memory Techniques Section */
.memory-techniques-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.memory-techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.memory-technique-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.memory-technique-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.memory-technique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.technique-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.technique-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.technique-number {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.technique-content h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.technique-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.technique-timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.timeline-text {
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

.mnemonic-examples {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.example-type {
  font-weight: 600;
  color: var(--primary-color);
}

.example-desc {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
  text-align: right;
}

.feynman-steps {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-text {
  color: var(--text-color);
  font-size: 0.9rem;
}

.palace-visualization {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.palace-room {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.room-icon {
  font-size: 1.5rem;
}

.room-name {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.8;
}

.palace-arrow {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.technique-details {
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.detail-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.detail-content {
  flex: 1;
}

.detail-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.detail-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.technique-effectiveness {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  margin-top: 1rem;
}

/* Study Organization Section */
.study-organization-section {
  padding: 80px 0;
}

.organization-dashboard {
  margin-top: 3rem;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.productivity-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-label {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.score-bar {
  width: 200px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.score-value {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.org-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.org-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.org-icon {
  font-size: 2.5rem;
}

.org-priority {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.org-content h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.org-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.org-checklist {
  display: grid;
  gap: 0.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--secondary-color);
  border-radius: 8px;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
}

.check-text {
  color: var(--text-color);
  font-size: 0.9rem;
}

.pomodoro-timer {
  background: var(--secondary-color);
  padding: 1rem;
  border-radius: 12px;
}

.timer-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.cycle-item.work {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.cycle-item.break {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.cycle-time {
  font-weight: 700;
  font-size: 1.1rem;
}

.cycle-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.cycle-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.planning-levels,
.environment-factors {
  display: grid;
  gap: 0.5rem;
}

.level-item,
.factor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--secondary-color);
  border-radius: 8px;
}

.level-icon,
.factor-icon {
  font-size: 1.2rem;
}

.level-text,
.factor-text {
  color: var(--text-color);
  font-size: 0.9rem;
}

.activity-rotation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.activity-item {
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.activity-item.theory {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.activity-item.practice {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.activity-item.discussion {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.activity-item.independent {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.activity-item:hover {
  transform: scale(1.05);
}

.break-schedule {
  display: grid;
  gap: 0.75rem;
}

.break-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
}

.break-time {
  font-weight: 600;
  color: var(--primary-color);
}

.break-type {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

.workspace-tips {
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(102, 126, 234, 0.05) 100%
  );
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.15) 0%,
    rgba(102, 126, 234, 0.1) 100%
  );
  transform: translateX(3px);
}

.tip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tip-text {
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Motivation Goals Section */
.motivation-goals-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.motivation-strategies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strategy-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.strategy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.strategy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.strategy-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.strategy-header h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.strategy-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.strategy-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.smart-breakdown {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.smart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.smart-letter {
  background: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.smart-word {
  font-weight: 600;
  color: var(--text-color);
  min-width: 100px;
}

.smart-desc {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

.goal-examples {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.goal-example {
  background: rgba(251, 191, 36, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.example-header {
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.5rem;
}

.example-text {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.5;
}

.goal-tips {
  display: grid;
  gap: 0.5rem;
}

.goal-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(5, 150, 105, 0.05) 100%
  );
  border-radius: 8px;
  border-left: 3px solid #10b981;
  transition: all 0.3s ease;
}

.goal-tip:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  transform: translateX(3px);
}

.goal-tip .tip-icon {
  font-size: 1.1rem;
  color: #10b981;
}

.goal-tip .tip-text {
  color: var(--text-color);
  font-size: 0.85rem;
  opacity: 0.9;
}

.progress-tools {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.tool-icon {
  font-size: 1.5rem;
}

.tool-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tool-name {
  font-weight: 600;
  color: var(--text-color);
}

.tool-desc {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}

.progress-visualization {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
}

.progress-week {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.week-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

.week-progress {
  display: flex;
  gap: 0.5rem;
}

.day-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.day-dot.completed {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.day-dot.current {
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
  animation: pulse 2s infinite;
}

.week-score {
  font-weight: 600;
  color: var(--primary-color);
}

.community-benefits {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-title {
  font-weight: 600;
  color: var(--text-color);
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}

.community-platforms {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
}

.platform-header {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-item {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design for Learning Tips */
@media (max-width: 768px) {
  .memory-techniques-grid {
    grid-template-columns: 1fr;
  }

  .organization-grid {
    grid-template-columns: 1fr;
  }

  .motivation-strategies {
    grid-template-columns: 1fr;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .productivity-score {
    flex-direction: column;
    gap: 0.5rem;
  }

  .score-bar {
    width: 150px;
  }

  .technique-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .strategy-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .activity-rotation {
    grid-template-columns: 1fr;
  }

  .timer-cycle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cycle-arrow {
    transform: rotate(90deg);
  }

  .technique-details {
    gap: 0.75rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .detail-icon {
    align-self: center;
  }

  .workspace-tips {
    gap: 0.5rem;
  }

  .tip-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .goal-examples {
    gap: 0.75rem;
  }

  .goal-tips {
    gap: 0.5rem;
  }

  .goal-tip {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
}

/* Experience Page Styles */

/* Story Badge */
.story-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 1rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Project Timeline */
.project-timeline {
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

.timeline-header h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.timeline-items {
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.timeline-date {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.timeline-content {
  flex: 1;
}

.timeline-content h5 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* Enhanced Achievement Stats */
.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
  line-height: 1.4;
}

/* Implementation Details */
.implementation-details {
  margin: 2rem 0;
}

.implementation-details h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.detail-card .detail-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.detail-card h5 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* Additional Cases Section */
.additional-cases {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mini-case-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mini-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.mini-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.case-meta h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.expert-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expert-avatar-tiny {
  background: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.expert-name {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.case-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.8;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-tag {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Expert Insights */
.expert-insights {
  margin-top: 3rem;
}

.insights-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.insight-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.insight-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insight-quote {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.author-name {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design for Experience Page */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-date {
    align-self: flex-start;
  }

  .achievement-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 5px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-author {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Tips Page Interactive Styles */

/* Enhanced Section Headers */
.section-header-enhanced {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-tips {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Memory Techniques Interactive */
.memory-techniques-interactive {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.interactive-techniques-container {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.technique-panel {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.technique-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.technique-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.panel-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.technique-icon-large {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.technique-info {
  flex: 1;
}

.technique-info h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.technique-stats {
  display: flex;
  gap: 1rem;
}

.stat-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.difficulty-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.difficulty-badge.easy {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.difficulty-badge.medium {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.difficulty-badge.hard {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.expand-toggle {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.expand-toggle:hover {
  transform: scale(1.1);
}

.panel-content {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-color);
}

.panel-content p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Enhanced Detail Boxes */
.technique-details-enhanced {
  display: grid;
  gap: 2rem;
}

.detail-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.detail-box h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.detail-box p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.5;
}

/* Schedule Timeline */
.repetition-schedule {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.repetition-schedule h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.schedule-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.schedule-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.point-marker {
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.point-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.point-time {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.point-desc {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
}

/* Enhanced Tool Items */
.practical-tools {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.practical-tools h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.tools-list {
  display: grid;
  gap: 1rem;
}

.tool-item-enhanced {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tool-item-enhanced:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.tool-item-enhanced .tool-icon {
  font-size: 1.5rem;
}

.tool-item-enhanced .tool-name {
  font-weight: 600;
  color: var(--text-color);
}

.tool-item-enhanced .tool-desc {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Mnemonic Types Grid */
.mnemonic-types {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.mnemonic-types h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.type-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.type-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.type-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.type-card h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.type-card p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0 0 0.75rem 0;
}

.example {
  background: rgba(74, 144, 226, 0.2);
  color: var(--primary-color);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Practice Exercise */
.practice-exercise {
  background: rgba(251, 191, 36, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.practice-exercise h4 {
  color: #d97706;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.exercise-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.exercise-box p {
  margin: 0 0 0.75rem 0;
  color: var(--text-color);
}

.exercise-tip {
  background: #f59e0b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

/* Feynman Steps Enhanced */
.feynman-steps-enhanced {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.feynman-steps-enhanced h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.step-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0 0 0.75rem 0;
}

.step-tip {
  background: rgba(74, 144, 226, 0.2);
  color: var(--primary-color);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-style: italic;
}

/* Feynman Quote */
.feynman-quote {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.feynman-quote blockquote {
  color: var(--text-color);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.feynman-quote cite {
  color: var(--primary-color);
  font-weight: 600;
  font-style: normal;
}

/* Study Organization Interactive */
.study-organization-interactive {
  padding: 80px 0;
}

.organization-dashboard-tips {
  margin-top: 3rem;
}

.productivity-meter {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  text-align: center;
}

.productivity-meter h3 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.meter-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.meter-bar {
  width: 300px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  border-radius: 6px;
  transition: width 0.3s ease;
}

.meter-value {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.meter-desc {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
}

/* Organization Cards */
.organization-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.org-card-interactive {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.org-card-interactive:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--secondary-color);
}

.card-header .card-icon {
  font-size: 2rem;
}

.card-header h4 {
  color: var(--text-color);
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.priority-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.priority-badge.high {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.priority-badge.medium {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.card-content {
  padding: 1.5rem;
}

.card-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Workspace Checklist */
.workspace-checklist {
  display: grid;
  gap: 0.75rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.checklist-item.completed {
  background: rgba(16, 185, 129, 0.1);
}

.checklist-item:hover {
  transform: translateX(3px);
}

.check-mark {
  font-weight: bold;
  font-size: 1.1rem;
}

.checklist-item.completed .check-mark {
  color: #10b981;
}

.checklist-item:not(.completed) .check-mark {
  color: #9ca3af;
}

.check-text {
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Pomodoro Timer Visual */
.pomodoro-timer-visual {
  text-align: center;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timer-circle {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.timer-circle.break {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.timer-text {
  font-weight: 700;
  font-size: 1rem;
}

.timer-label {
  font-size: 0.7rem;
  opacity: 0.9;
}

.timer-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.pomodoro-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Planning Hierarchy */
.planning-hierarchy {
  display: grid;
  gap: 0.75rem;
}

.plan-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.plan-level:hover {
  transform: translateX(3px);
}

.level-icon {
  font-size: 1.2rem;
}

.level-text {
  color: var(--text-color);
  font-weight: 500;
  flex: 1;
  margin-left: 0.75rem;
}

.level-status {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Activity Wheel */
.activity-wheel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.activity-segment {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.activity-segment:hover {
  transform: scale(1.05);
}

.activity-segment.theory {
  background: rgba(59, 130, 246, 0.2);
  color: #2563eb;
}

.activity-segment.practice {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.activity-segment.discussion {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.activity-segment.independent {
  background: rgba(139, 92, 246, 0.2);
  color: #7c3aed;
}

/* Break Schedule Visual */
.break-schedule-visual {
  display: grid;
  gap: 1rem;
}

.break-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 8px;
}

.break-time {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.break-type {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.break-benefit {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
}

/* Motivation Interactive */
.motivation-interactive {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.motivation-strategies-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strategy-card-interactive {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.strategy-card-interactive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.strategy-card-interactive:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.strategy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.strategy-icon-large {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.strategy-header h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.strategy-effectiveness {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.strategy-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* SMART Breakdown Interactive */
.smart-breakdown-interactive {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.smart-letter-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.smart-letter-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.smart-letter {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.smart-details {
  flex: 1;
}

.smart-details h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.smart-details p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
}

.smart-example {
  background: rgba(74, 144, 226, 0.2);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Goal Example Interactive */
.goal-example-interactive {
  background: rgba(251, 191, 36, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.goal-example-interactive h4 {
  color: #d97706;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.example-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.example-box p {
  color: var(--text-color);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Progress Dashboard */
.progress-dashboard {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.progress-dashboard h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
  text-align: center;
}

.weekly-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.day-progress {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.day-progress.completed {
  background: #10b981;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.day-progress.current {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  animation: pulse 2s infinite;
}

.day-progress:not(.completed):not(.current) {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  opacity: 0.6;
}

.progress-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  flex: 1;
  max-width: 120px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
}

/* Tracking Tools */
.tracking-tools {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.tracking-tools h4 {
  color: var(--text-color);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.tools-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.tool-emoji {
  font-size: 1.5rem;
}

.tool-name {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Community Benefits */
.community-benefits {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.community-benefits h4 {
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  color: var(--text-color);
  font-weight: 500;
}

/* Community Platforms */
.community-platforms {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.community-platforms h4 {
  color: var(--text-color);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.platform-icon {
  font-size: 1.5rem;
}

.platform-name {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design for Tips Page */
@media (max-width: 768px) {
  .interactive-techniques-container {
    gap: 1.5rem;
  }

  .panel-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .technique-stats {
    justify-content: center;
  }

  .schedule-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .organization-cards {
    grid-template-columns: 1fr;
  }

  .meter-container {
    flex-direction: column;
    gap: 1rem;
  }

  .meter-bar {
    width: 200px;
  }

  .timer-display {
    flex-direction: column;
    gap: 0.5rem;
  }

  .timer-arrow {
    transform: rotate(90deg);
  }

  .activity-wheel {
    grid-template-columns: 1fr;
  }

  .motivation-strategies-container {
    grid-template-columns: 1fr;
  }

  .strategy-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .weekly-progress {
    gap: 0.25rem;
  }

  .day-progress {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .progress-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-box {
    max-width: none;
  }
}

/* Policy Pages Interactive Styles */

/* Policy Navigation */
.policy-navigation {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.policy-navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  border-radius: 20px 20px 0 0;
}

.nav-container h3 {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.nav-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.nav-text {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Policy Section Interactive */
.policy-section-interactive {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.section-header-policy {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-policy {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.section-header-policy h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header-policy p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Policy Card Container */
.policy-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header-policy {
  background: var(--secondary-color);
  padding: 2rem;
  text-align: center;
}

.card-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card-header-policy h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.card-content-policy {
  padding: 2rem;
}

.card-content-policy p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Info Box */
.info-box {
  background: rgba(74, 144, 226, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.info-box h4 {
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.char-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.char-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(3px);
}

.char-icon {
  font-size: 1.2rem;
}

.char-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Benefits List */
.benefits-list {
  display: grid;
  gap: 1rem;
}

.benefit-item-policy {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item-policy:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Usage Grid */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usage-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.usage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
}

.usage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.usage-header {
  background: var(--secondary-color);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.usage-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.usage-header h3 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.priority-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.priority-badge.critical {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.priority-badge.high {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.priority-badge.medium {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.usage-content {
  padding: 1.5rem;
}

.usage-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.usage-examples {
  display: grid;
  gap: 0.75rem;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.example-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.example-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.example-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Cookie Management Card */
.cookie-management-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cookie-management-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.management-header {
  margin-bottom: 2rem;
}

.management-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.management-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.management-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.management-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cookie-settings-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.cookie-settings-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-text {
  font-weight: 600;
}

.management-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #667eea;
  transform: scale(1.05);
}

.contact-card p {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .nav-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .nav-item {
    padding: 0.75rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .nav-icon {
    font-size: 1.2rem;
  }

  .nav-text {
    font-size: 0.85rem;
  }

  .policy-card-container {
    grid-template-columns: 1fr;
  }

  .usage-grid {
    grid-template-columns: 1fr;
  }

  .usage-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .usage-header h3 {
    margin-left: 0;
  }

  .characteristics-grid {
    grid-template-columns: 1fr;
  }

  .section-header-policy h2 {
    font-size: 1.5rem;
  }

  .card-header-policy {
    padding: 1.5rem;
  }

  .card-content-policy {
    padding: 1.5rem;
  }

  .cookie-management-card {
    padding: 2rem;
  }

  .management-info {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* Terms and Privacy Specific Styles */

/* Terms Highlights */
.terms-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.highlight-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Agreement Steps */
.agreement-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Privacy Principles */
.privacy-principles {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.principle-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(5px);
}

.principle-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.principle-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.principle-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Consent Info */
.consent-info {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.consent-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.consent-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.consent-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.consent-text {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .terms-highlights,
  .privacy-principles {
    gap: 0.75rem;
  }

  .highlight-item,
  .principle-item {
    padding: 0.75rem;
  }

  .agreement-steps,
  .consent-info {
    gap: 0.5rem;
  }

  .step-item,
  .consent-item {
    padding: 0.5rem;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

/* Cookie Types Grid */
.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cookie-type-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.cookie-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
}

.cookie-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.type-header {
  background: var(--secondary-color);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.type-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.type-header h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.type-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.type-badge.critical {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.type-badge.high {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.type-badge.medium {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.type-content {
  padding: 2rem;
}

.type-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-examples {
  margin-bottom: 1.5rem;
}

.cookie-examples h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.examples-list {
  display: grid;
  gap: 0.75rem;
}

.example-item-cookie {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.example-item-cookie:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.example-item-cookie .example-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.example-item-cookie .example-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.type-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.info-label {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.info-value {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.info-value.disabled {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.info-value.optional {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

/* Third Party Services */
.third-party-services {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.service-category {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.category-header h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.service-count {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.category-content {
  padding: 2rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
  font-size: 2rem;
  background: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
}

.service-info h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.service-info p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-item {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Social Features */
.social-features {
  display: grid;
  gap: 1rem;
}

.social-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-feature:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-content h5 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Third Party Notice */
.third-party-notice {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  margin-top: 2rem;
}

.notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.notice-content h4 {
  color: #d97706;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.notice-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.notice-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.policy-link {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.policy-link:hover {
  background: #667eea;
  transform: translateY(-1px);
}

/* Additional responsive adjustments for new elements */
@media (max-width: 768px) {
  .cookie-types-grid {
    grid-template-columns: 1fr;
  }

  .type-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .type-header h3 {
    margin-left: 0;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .third-party-notice {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .notice-actions {
    justify-content: center;
  }
}

/* Terms Services Grid */
.services-grid-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card-terms {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.service-card-terms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.service-card-terms:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-terms {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.service-card-terms h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.service-card-terms p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(74, 144, 226, 0.2);
  transform: scale(1.05);
}

/* Services Notice */
.services-notice {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 12px;
  margin-top: 2rem;
  align-items: flex-start;
}

.notice-icon-services {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.notice-text-services h4 {
  color: #059669;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.notice-text-services p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* Additional responsive adjustments for terms */
@media (max-width: 768px) {
  .services-grid-terms {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-terms {
    padding: 1.5rem;
  }

  .service-icon-terms {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .services-notice {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Challenges Section Interactive */
.challenges-section-interactive {
  margin: 4rem 0;
}

.section-header-challenges {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-challenges {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.section-header-challenges h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header-challenges p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.challenges-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.challenge-header {
  background: var(--secondary-color);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.challenge-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.challenge-header h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.difficulty-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.difficulty-badge.easy {
  background: rgba(16, 185, 129, 0.2);
  color: #059669;
}

.difficulty-badge.medium {
  background: rgba(245, 158, 11, 0.2);
  color: #d97706;
}

.difficulty-badge.hard {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.challenge-content {
  padding: 2rem;
}

.challenge-description {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.solutions-list {
  margin-bottom: 2rem;
}

.solutions-list h4 {
  color: #f59e0b;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.solution-item:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateX(3px);
}

.solution-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.solution-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.challenge-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Digital Tools Section Interactive */
.digital-tools-section-interactive {
  margin: 4rem 0;
}

.section-header-tools {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-tools {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.section-header-tools h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header-tools p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tool-category-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tool-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-header-tools {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon-tools {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.category-header-tools h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  margin-left: 1rem;
}

.tools-count {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.category-content-tools {
  padding: 2rem;
}

.category-description {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.tools-list-modern {
  display: grid;
  gap: 1rem;
}

.tool-item-modern {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tool-item-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-icon-small {
  font-size: 1.5rem;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-info {
  flex: 1;
}

.tool-info h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.tool-info p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.85rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.feature-tag-small {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag-small:hover {
  background: rgba(74, 144, 226, 0.2);
  transform: scale(1.05);
}

/* Personal Recommendations CTA */
.personal-recommendations-cta {
  margin: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(102, 126, 234, 0.05) 100%
  );
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.personal-recommendations-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #667eea,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.cta-container-modern {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content-enhanced {
  text-align: center;
}

.cta-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.cta-content-enhanced h2 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content-enhanced p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-benefits {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.benefit-item-cta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item-cta:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.benefit-icon-cta {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text-cta h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.benefit-text-cta p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.cta-action {
  text-align: center;
}

.btn-primary-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
  margin-bottom: 1rem;
}

.btn-primary-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
  color: white;
}

.btn-icon-cta {
  font-size: 1.2rem;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

.note-icon {
  font-size: 1rem;
}

.cta-stats {
  display: grid;
  gap: 1rem;
}

.stat-card-cta {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-card-cta .stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
  .challenges-grid-modern {
    grid-template-columns: 1fr;
  }

  .challenge-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .challenge-header h3 {
    margin-left: 0;
  }

  .challenge-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tools-categories-grid {
    grid-template-columns: 1fr;
  }

  .tool-item-modern {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-container-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-card-cta {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Enhanced Hero Section */
.hero-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/studyforum.jpg") no-repeat center center/cover;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-color), #667eea);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 70%;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-enhanced .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content-enhanced {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.title-main {
  display: block;
  color: var(--hover-color);
}

.hero-description {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-features-preview {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.feature-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-preview:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-text {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
  color: white;
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--text-color);
}

.btn-icon {
  font-size: 1.2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: slideInUp 0.8s ease-out 1s both;
}

.stat-item-hero {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  display: block;
}

.hero-stats .stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.5s both;
}

.hero-illustration {
  position: relative;
  width: 400px;
  height: 400px;
}

.illustration-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.main-circle {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.circle-content {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-icon {
  font-size: 4rem;
}

.secondary-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-icon {
  font-size: 2rem;
}

.circle-1 {
  top: 10%;
  left: 20%;
  animation: orbit 8s linear infinite;
}

.circle-2 {
  top: 20%;
  right: 10%;
  animation: orbit 10s linear infinite reverse;
}

.circle-3 {
  bottom: 20%;
  left: 10%;
  animation: orbit 12s linear infinite;
}

.circle-4 {
  bottom: 10%;
  right: 20%;
  animation: orbit 9s linear infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for Enhanced Hero */
@media (max-width: 768px) {
  .hero-enhanced .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features-preview {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }

  .hero-illustration {
    width: 300px;
    height: 300px;
  }

  .main-circle {
    width: 150px;
    height: 150px;
  }

  .main-icon {
    font-size: 3rem;
  }

  .secondary-circle {
    width: 60px;
    height: 60px;
  }

  .secondary-icon {
    font-size: 1.5rem;
  }
}

/* Metro Gallery Section */
.metro-gallery {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  position: relative;
  overflow: hidden;
}

.section-header-gallery {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.gallery-badge .badge-icon {
  font-size: 1.2rem;
}

.gallery-badge .badge-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header-gallery h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header-gallery p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.slide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  position: relative;
}

.image-placeholder {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.placeholder-icon {
  font-size: 4rem;
  color: white;
}

.slide-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-info h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.slide-info p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.slide-stats {
  display: flex;
  gap: 2rem;
}

.stat-mini {
  text-align: center;
}

.stat-mini .stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-mini .stat-label {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
  font-weight: 500;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 -60px;
  pointer-events: none;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  position: relative;
  z-index: 10;
}

.gallery-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.prev-btn {
  margin-left: -25px;
}

.next-btn {
  margin-right: -25px;
}

.btn-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(74, 144, 226, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Innovation Showcase Section */
.innovation-showcase {
  padding: 5rem 0;
  background: var(--secondary-color);
}

.showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.showcase-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.innovation-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.innovation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
}

.innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header-innovation {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.innovation-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card-header-innovation h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.card-content-innovation {
  padding: 2rem;
}

.card-content-innovation p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.innovation-features {
  display: grid;
  gap: 0.75rem;
}

.feature-item-innovation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item-innovation:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.feature-item-innovation .feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item-innovation .feature-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Success Stories Section */
.success-stories {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.stories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stories-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stories-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.stories-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-story {
  position: relative;
}

.story-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.story-content {
  padding: 2rem;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  font-size: 2rem;
  color: white;
}

.story-info h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.story-info p {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

.story-text p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-achievements {
  display: grid;
  gap: 0.75rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.achievement:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.achievement-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.achievement-text {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.stories-grid {
  display: grid;
  gap: 1.5rem;
}

.mini-story {
  padding: 1.5rem;
}

.mini-story-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mini-avatar {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-info h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.mini-info p {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.8rem;
  margin: 0;
}

.mini-story p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.mini-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 6px;
}

.result-icon {
  font-size: 1rem;
}

.result-text {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .slide-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slide-image {
    min-height: 200px;
  }

  .slide-info {
    padding: 2rem;
  }

  .slide-stats {
    gap: 1rem;
  }

  .gallery-controls {
    padding: 0 -40px;
  }

  .prev-btn {
    margin-left: -20px;
  }

  .next-btn {
    margin-right: -20px;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
  }

  .stories-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-header-gallery h2,
  .showcase-header h2,
  .stories-header h2 {
    font-size: 2rem;
  }
}

/* Enhanced Features Section */
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.features-badge .badge-icon {
  font-size: 1.2rem;
}

.features-badge .badge-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.features-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card.enhanced {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card.enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
}

.feature-card.enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.feature-card:nth-child(1) .feature-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-card:nth-child(2) .feature-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-card:nth-child(3) .feature-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-card:nth-child(4) .feature-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-card:nth-child(5) .feature-badge {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-card:nth-child(6) .feature-badge {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-card.enhanced h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin: 1rem 0;
  font-weight: 600;
}

.feature-card.enhanced p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.highlight-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-text {
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.topic-tag {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background: rgba(74, 144, 226, 0.2);
  transform: scale(1.05);
}

.feature-link.enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.feature-link.enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
  color: white;
}

.features-cta {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-content h3 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
  color: white;
}

.btn-secondary-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--text-color);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  display: block;
}

.cta-stat .stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Statistics Section */
.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.stats-badge .badge-icon {
  font-size: 1.2rem;
}

.stats-badge .badge-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.stats-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stats-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid.enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  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(--primary-color), #667eea);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item.featured {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item .stat-label {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.stat-description {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.stat-growth {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.stats-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.achievement-content h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.achievement-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.stats-testimonial {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.testimonial-quote {
  color: var(--text-color);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-name {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-position {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

.company-logo {
  font-size: 2rem;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid.enhanced {
    grid-template-columns: 1fr;
  }

  .stats-achievements {
    grid-template-columns: 1fr;
  }

  .achievement-item {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author {
    flex-direction: column;
  }

  .features-header h2,
  .stats-header h2 {
    font-size: 2rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.faq-badge .badge-icon {
  font-size: 1.2rem;
}

.faq-badge .badge-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-header h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.faq-question.active {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.15) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.question-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.question-content h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
}

.faq-question.active .toggle-icon {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer.active {
  max-height: 2000px;
  transition: max-height 0.6s ease-in;
}

.answer-content {
  padding: 2rem;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.answer-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.answer-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.answer-details {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateX(3px);
}

.detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.detail-text strong {
  color: var(--text-color);
  font-weight: 600;
}

.detail-text small {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.85rem;
}

.working-hours {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

.hours-icon {
  font-size: 1.2rem;
}

.hours-text {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.free-services ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.free-services li {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.consultation-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.format-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.format-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.format-details strong {
  color: var(--primary-color);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.format-details p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.next-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  border-left: 4px solid #f59e0b;
  margin-top: 1.5rem;
}

.steps-icon {
  font-size: 1.2rem;
}

.steps-text {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.advantage-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.advantage-text strong {
  color: var(--primary-color);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

.advantage-text p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.platform-tag {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.platform-tag:hover {
  background: rgba(74, 144, 226, 0.2);
  transform: scale(1.05);
}

.programs-categories {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.program-category {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.program-category h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.program-category ul {
  margin: 0;
  padding-left: 1.5rem;
}

.program-category li {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.format-card {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.format-card:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-2px);
}

.format-card .format-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.format-card strong {
  color: var(--primary-color);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.format-card p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.8rem;
  font-weight: 500;
}

.outcomes-timeline {
  margin: 1rem 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 10px;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.timeline-content {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
  font-size: 0.9rem;
}

.timeline-content strong {
  color: var(--text-color);
  opacity: 1;
}

.language-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.language-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.lang-flag {
  font-size: 2rem;
  flex-shrink: 0;
}

.lang-details strong {
  color: var(--primary-color);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.lang-details p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}

.lang-details small {
  color: var(--text-color);
  opacity: 0.6;
  font-size: 0.8rem;
}

.translation-progress ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.translation-progress li {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .question-content {
    gap: 0.75rem;
  }

  .question-content h3 {
    font-size: 1rem;
  }

  .answer-content {
    padding: 1.5rem;
  }

  .consultation-formats {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide contact information on mobile */
  .content-section:first-child {
    display: none;
  }

  /* Change contacts grid to 1x1 on mobile */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Old Map Container (for backward compatibility) */
.map-container {
  height: 400px;
  background-color: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* About Page Styles */
.values-section {
  background: var(--secondary-color);
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.value-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.value-icon img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon img {
  transform: scale(1.1);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.8;
}

/* Remove list bullets */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  list-style: none;
}

/* Mobile Navigation Styles */
@media (max-width: 945px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 80px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navigation.show {
    right: 0;
  }

  .navigation ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    height: 100%;
    align-items: stretch;
  }

  .navigation li {
    margin-bottom: 0.5rem;
  }

  .navigation a {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .navigation.show a {
    transform: translateX(0);
    opacity: 1;
  }

  .navigation.show a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navigation.show a:nth-child(2) {
    transition-delay: 0.15s;
  }
  .navigation.show a:nth-child(3) {
    transition-delay: 0.2s;
  }
  .navigation.show a:nth-child(4) {
    transition-delay: 0.25s;
  }
  .navigation.show a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .navigation a::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
  }

  .navigation a:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* Header adjustments for mobile */
  .header-content {
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo {
    z-index: 1002;
    position: relative;
    max-width: calc(100% - 60px);
  }

  .logo h1 {
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo h1 a {
    color: var(--text-color);
    text-decoration: none;
  }

  /* Ensure mobile menu toggle stays in position */
  .mobile-menu-toggle {
    position: relative;
    z-index: 1003;
    flex-shrink: 0;
  }

  .header-content {
    gap: 1rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .registration-form,
  .contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }

  .contact-form {
    width: calc(100vw - 2rem);
    max-width: none;
    margin: 0 1rem;
    border-radius: 15px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .registration-form,
  .contact-form {
    padding: 1.5rem;
    margin: 0;
    border-radius: 0;
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .contact-form {
    border-radius: 0;
    margin: 0;
    width: 100%;
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 1.5rem 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .learning-hero {
    padding: 60px 0;
  }

  .learning-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .techniques-grid {
    grid-template-columns: 1fr;
  }

  .motivation-grid,
  .info-work-grid,
  .challenges-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .technique-card,
  .motivation-card,
  .info-card,
  .tool-category {
    padding: 1.5rem;
  }

  .org-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .experience-hero {
    padding: 60px 0;
  }

  .experience-hero h1 {
    font-size: 2.2rem;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .story-header h2 {
    font-size: 1.8rem;
  }

  .expert-profile {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .methodology-features,
  .countries-showcase {
    grid-template-columns: 1fr;
  }

  .report-header {
    flex-direction: column;
    text-align: center;
  }

  .case-header h2 {
    font-size: 2rem;
  }

  .next-steps-container {
    padding: 2rem 1.5rem;
  }

  .next-steps-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .next-steps-header h2 {
    font-size: 1.5rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .features,
  .registration,
  .page-content {
    padding: 60px 0;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
