* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}
.header-fixed .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #6A5ACD;
  text-decoration: none;
}
.header-fixed .navbar-brand:hover {
  color: #5848b3;
}
.header-fixed .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}
.header-fixed .nav-link:hover {
  color: #6A5ACD;
}
.main-content {
  margin-top: 70px;
}
.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}
.section-padding {
  padding: 80px 0;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #6A5ACD;
}
.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.btn-primary-custom {
  background-color: #6A5ACD;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background-color: #5848b3;
  color: #fff;
  text-decoration: none;
}
.card-custom {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.card-custom:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.disclaimer-box {
  background: #f8f9fa;
  border-left: 4px solid #6A5ACD;
  padding: 25px;
  margin: 30px 0;
  border-radius: 5px;
}
.disclaimer-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.disclaimer-box p {
  margin-bottom: 10px;
  color: #555;
}
.faq-item {
  margin-bottom: 25px;
}
.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #6A5ACD;
  margin-bottom: 10px;
}
.faq-item p {
  color: #555;
}
.footer-section {
  background: #2c3e50;
  color: #fff;
  padding: 50px 0 20px;
}
.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-section a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #6A5ACD;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}
.cookie-banner.active {
  display: block;
}
.cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 15px;
}
.cookie-banner button {
  background: #6A5ACD;
  border: none;
  color: #fff;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cookie-banner button:hover {
  background: #5848b3;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 20px;
}
.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-card img {
  width: 100%;
  height: auto;
}
.blog-card-body {
  padding: 25px;
}
.blog-card-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.blog-card-body p {
  color: #555;
  margin-bottom: 20px;
}
.educational-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 5px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
  font-weight: 500;
  color: #856404;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 22px;
  }
  .header-fixed .nav-link {
    margin-left: 0;
    margin-top: 10px;
  }
}
