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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #2dd4bf;
  color: white;
}

.cookie-btn.accept:hover {
  background: #14b8a6;
}

.cookie-btn.decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn.decline:hover {
  background: white;
  color: #333;
}

.cookie-link {
  color: #2dd4bf;
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  background: #333;
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-brand h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.0), rgba(20, 184, 166, 0.9)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

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

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background: white;
  color: #2dd4bf;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Tarife Section */
.tarife {
  padding: 80px 0;
  background: white;
}

.tarife h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.tarife-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tarif-card {
  background: #2dd4bf;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  /* min-width: 280px; */
  max-width: 300px;
  transition: transform 0.3s ease;
}

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

.card-image {
  overflow: hidden;
}

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

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.card-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-content ul {
  list-style: none;
}

.card-content li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.card-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Learning Modules Section */
.learning-modules {
  padding: 80px 0;
  background: #2dd4bf;
  color: white;
}

.learning-modules h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.learning-modules > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.modules-list {
  margin-bottom: 40px;
}

.module-item {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.module-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.participants-info {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.participants-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.participants-info ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.participants-info li {
  position: relative;
  padding-left: 20px;
}

.participants-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Knowledge Section */
.knowledge {
  padding: 80px 0;
  background: white;
}

.knowledge-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.knowledge-image {
  flex: 1;
}

.knowledge-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.knowledge-text {
  flex: 1;
}

.knowledge-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.knowledge-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #2dd4bf;
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact form {
  max-width: 500px;
  margin: 40px auto 0;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-button {
  background: white;
  color: #2dd4bf;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-right {
  display: flex;
  gap: 25px;
}

.footer-right a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #2dd4bf;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h2 {
      font-size: 2rem;
  }
  
  .hero-text p {
      font-size: 1rem;
  }
  
  .tarife-grid {
      flex-direction: column;
      align-items: center;
  }
  
  .tarif-card {
      max-width: 100%;
  }
  
  .about-content {
      flex-direction: column;
      text-align: center;
  }
  
  .knowledge-content {
      flex-direction: column-reverse;
      text-align: center;
  }
  
  .participants-info ul {
      flex-direction: column;
      gap: 15px;
  }
  
  .footer-content {
      flex-direction: column;
      text-align: center;
  }
  
  .footer-right {
      flex-direction: column;
      gap: 15px;
  }
  
  .cookie-content {
      flex-direction: column;
      gap: 15px;
  }
  
  .cookie-buttons {
      flex-wrap: wrap;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
      padding: 100px 0 60px;
  }
  
  .hero-text h2 {
      font-size: 1.8rem;
  }
  
  .tarife h2,
  .learning-modules h2,
  .contact h2 {
      font-size: 2rem;
  }
  
  .about-text h2,
  .knowledge-text h2 {
      font-size: 1.8rem;
  }
  
  .container {
      padding: 0 15px;
  }
  
  .nav {
      padding: 0 15px;
  }
  
  .hero-content {
      padding: 0 15px;
  }
}

.legal {
  min-height: 90vh;
  padding: 120px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.legal h2 {
  text-align: center;
}

.legal a {
  text-decoration: none;
  color: #fff;
  background: #10ADB6;
  margin: 0 auto;
  display: flex;
  max-width: fit-content;
}

@media (hover: hover) {
  .legal a:hover  {
    color: #10ADB6;
  }
}

@media (hover: none) {
  .legal a:active  {
    color: #10ADB6;
  }
}