 /* Critical Above-the-Fold CSS */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Open Sans", "Segoe UI",
      Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
  }
  /* Шрифти вже завантажені inline */

  /* Header */
  .header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
  }
  .nav {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav a:hover {
    color: #ffd700;
  }

  /* Burger Menu */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1001;
  }
  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
  }
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .badge {
    background: #dc3545;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
  }
  .hero h1 {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, sans-serif;

    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  .cta-btn {
    background: #dc3545;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 53, 85, 0.3);
  }
  .cta-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 85, 0.4);
  }

  /* Section Styling */
  .section {
    padding: 80px 0;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .white-block {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  .yellow-block {
    background: #ffd700;
    color: #000;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  .dark-block {
    background: #333;
    color: #fff;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }

  /* Animations */
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
  }

  /* Mobile Optimizations */
  @media (max-width: 768px) {
    .burger-menu {
      display: flex;
    }
    
    .nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      transition: left 0.3s ease;
      z-index: 1000;
    }
    
    .nav.active {
      left: 0;
    }
    
    .nav a {
      font-size: 1.5rem;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .nav a:hover {
      color: #ffd700;
    }
    
    .hero h1 {
      font-size: 1rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .white-block,
    .yellow-block,
    .dark-block {
      padding: 2rem;
    }
  }


  /* Kurs Page Specific Styles */

/* Course Overview Section */
.course-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.course-overview h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #dc3545;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.course-overview .content-block {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border-left: 5px solid #ffd700;
}

.course-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Target Audience Section */
.target-audience {
  padding: 80px 0;
  background: #fff;
}

.target-audience h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

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

.audience-card {
  background: linear-gradient(135deg, #ffd700 0%, #f0c040 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* Course Modules Section */
.course-modules {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.course-modules h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.module-card {
  background: #333;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 5px solid #dc3545;
  transition: all 0.3s ease;
}

.module-card:hover {
  background: #444;
  transform: translateX(10px);
}

.module-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.module-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* Access Section */
.access-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  text-align: center;
}

.access-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

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

.access-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.access-feature h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-button {
  background: #ffd700;
  color: #000;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

.cta-button:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

/* Course Images */
.course-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

/* Lazy loading placeholder */
.course-image[data-src] {
  background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-overview h2,
  .target-audience h2,
  .course-modules h2,
  .access-section h2 {
    font-size: 2rem;
  }
  
  .course-overview .content-block {
    padding: 2rem;
  }
  
  .audience-card,
  .module-card {
    padding: 2rem;
  }
  
  .course-image {
    height: 200px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .audience-grid,
  .access-features {
    grid-template-columns: 1fr;
  }
  
  .course-overview h2,
  .target-audience h2,
  .course-modules h2,
  .access-section h2 {
    font-size: 1.8rem;
  }
}

/* Experten Page Specific Styles */

/* Experts Overview Section */
.experts-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.experts-overview h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #dc3545;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.experts-overview .content-block {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border-left: 5px solid #ffd700;
  text-align: center;
}

.experts-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Expert Cards Section */
.experts-section {
  padding: 80px 0;
  background: #fff;
}

.expert-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #ffd700;
}

.expert-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, #333 0%, #555 100%);
}

.expert-content {
  padding: 2.5rem;
  min-height: 410px;
}

.expert-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.expert-background {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 600;
}

.expert-role {
  background: #ffd700;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.expert-experience {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Special Features Section */
.special-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
}

.special-features h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  min-height: 339px;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: #ffd700;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* Lazy loading placeholder for expert photos */
.expert-photo[data-src] {
  background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* Responsive Design for Experts */
@media (max-width: 768px) {
  .experts-overview h2,
  .special-features h2 {
    font-size: 2rem;
  }
  
  .experts-overview .content-block {
    padding: 2rem;
  }
  
  .expert-content {
    padding: 2rem;
  }
  
  .expert-name {
    font-size: 1.8rem;
  }
  
  .expert-photo {
    height: 250px;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .experts-overview h2,
  .special-features h2 {
    font-size: 1.8rem;
  }
  
  .expert-name {
    font-size: 1.6rem;
  }
  
  .expert-photo {
    height: 200px;
  }
}

/* Blog Page Specific Styles */

/* Blog Overview Section */
.blog-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-overview h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #dc3545;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: #fff;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  border-left: 5px solid #ffd700;
}

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

.news-content {
  padding: 2.5rem;
}

.news-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.news-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* Articles Section */
.articles-section {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.articles-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.article-card {
  background: #333;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.article-card:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
}

.article-content {
  padding: 2.5rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.article-author {
  color: #ffd700;
  font-weight: bold;
}

.article-date {
  color: #999;
}

.article-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  color: #ffd700;
}

.article-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.article-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.article-image {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 10px;
}

/* Lazy loading placeholder for blog images */
.news-image[data-src],
.article-image[data-src] {
  background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
  .blog-overview h2,
  .articles-section h2 {
    font-size: 2rem;
  }
  
  .news-content,
  .article-content {
    padding: 2rem;
  }
  
  .news-title,
  .article-title {
    font-size: 1.5rem;
  }
  
  .news-image {
    height: 180px;
  }
  
  .article-image {
    height: 200px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .blog-overview h2,
  .articles-section h2 {
    font-size: 1.8rem;
  }
  
  .news-title,
  .article-title {
    font-size: 1.3rem;
  }
  
  .news-image {
    height: 150px;
  }
  
  .article-image {
    height: 180px;
  }
}

/* Kontakt Page Specific Styles */

/* Contact Overview Section */
.contact-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-overview h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #dc3545;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-info {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border-left: 5px solid #ffd700;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-details {
  background: #333;
  color: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #ffd700;
  width: 30px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #ffd700;
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 15px;
}

/* Registration Form Section */
.registration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
}

.registration-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.registration-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #555;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-control::placeholder {
  color: #ccc;
}

.form-control.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.submit-btn {
  background: #ffd700;
  color: #000;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.submit-btn:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
  background: #666;
  color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

/* Loading state */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-overview h2,
  .registration-section h2 {
    font-size: 2rem;
  }
  
  .contact-info,
  .registration-form {
    padding: 2rem;
  }
  
  .contact-details {
    padding: 2rem;
  }
  
  .contact-map iframe {
    height: 300px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .contact-icon {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .contact-overview h2,
  .registration-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-map iframe {
    height: 250px;
  }
}

/* Legal Pages (Privacy & Terms) Styles */

.legal-page {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: 100vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.legal-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.legal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 215, 0, 0.1);
  pointer-events: none;
}

.legal-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #ffd700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.legal-content {
  padding: 4rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #dc3545;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-align: center;
  letter-spacing: 1px;
}

.legal-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #333;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ffd700;
  letter-spacing: 0.5px;
}

.legal-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
}

.legal-content li {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  list-style: none;
}

.legal-content li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2rem;
}

.legal-content strong {
  color: #333;
  font-weight: 600;
}

.legal-content a {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Company info styling */
.company-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  margin: 1rem 0;
  font-family: monospace;
  font-size: 0.95rem;
}

/* Last updated info */
.last-updated {
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: #666;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Navigation breadcrumb */
.legal-breadcrumb {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.legal-breadcrumb a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
  color: #fff;
}

.legal-breadcrumb span {
  color: #999;
  margin: 0 0.5rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 40px 0;
  }
  
  .legal-header {
    padding: 2rem;
  }
  
  .legal-header h1 {
    font-size: 2.2rem;
  }
  
  .legal-content {
    padding: 2.5rem;
  }
  
  .legal-content h2 {
    font-size: 1.8rem;
  }
  
  .legal-content h3 {
    font-size: 1.2rem;
  }
  
  .legal-content p,
  .legal-content li {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .legal-header h1 {
    font-size: 1.8rem;
  }
  
  .legal-content {
    padding: 2rem;
  }
  
  .legal-content h2 {
    font-size: 1.6rem;
  }
  
  .legal-content h3 {
    font-size: 1.1rem;
  }
}

/* Thank You Page Styles */

.thank-you-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  position: relative;
}

.thank-you-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd700 0%, #dc3545 50%, #ffd700 100%);
}

.thank-you-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 3rem 2rem;
  position: relative;
}

.thank-you-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 215, 0, 0.1);
  pointer-events: none;
}

.thank-you-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

.thank-you-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffd700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.thank-you-content {
  padding: 3rem;
  line-height: 1.8;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.thank-you-details {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  margin: 2rem 0;
  text-align: left;
}

.thank-you-details p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-primary {
  background: #ffd700;
  color: #000;
  border: 2px solid #ffd700;
}

.btn-primary:hover {
  background: #000;
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
}

.btn-secondary:hover {
  background: #dc3545;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.thank-you-footer {
  background: #f8f9fa;
  padding: 1.5rem;
  border-top: 1px solid #dee2e6;
  font-size: 0.85rem;
  color: #666;
}

.thank-you-footer a {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
}

.thank-you-footer a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Loading animation for auto-redirect */
.redirect-info {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  position: relative;
}

.loading-dots {
  display: inline-block;
  width: 20px;
  text-align: left;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
  .thank-you-page {
    padding: 40px 0;
  }
  
  .thank-you-header {
    padding: 2rem 1.5rem;
  }
  
  .thank-you-title {
    font-size: 2rem;
  }
  
  .thank-you-icon {
    font-size: 3rem;
  }
  
  .thank-you-content {
    padding: 2rem;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .thank-you-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .thank-you-container {
    margin: 0 1rem;
  }
  
  .thank-you-title {
    font-size: 1.8rem;
  }
  
  .thank-you-content {
    padding: 1.5rem;
  }
  
  .thank-you-details {
    padding: 1.5rem;
  }
} 