.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #0056b3;
  color: #f6f6f6;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  width: 50px;
  margin-right: 10px;
}

.site-header h1 {
  font-size: 24px;
  color: #333;
}

.site-nav ul {
  list-style: none;
  display: flex;
}

.site-nav ul li {
  margin-left: 20px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}

.site-nav ul li a:hover {
  color: #007bff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  max-height: 500px;
  background-color: #ddd;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.slide.fade {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 5px;
}

.about-us-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
  padding: 20px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 18px;
  color: #555;
}

.about-image {
  flex: 1 1 400px;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.courses-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.course-item {
  background-color: #fff;
  margin: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.course-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #007bff;
}

.course-item p {
  font-size: 16px;
  color: #555;
}

.teachers-section {
  padding: 60px 20px;
  background-color: #fff;
}

.teachers-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.teachers-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.teachers-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #777;
}

.teachers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.teacher-item {
  background-color: #f9f9f9;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.teacher-item img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.teacher-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #007bff;
}

.teacher-item p {
  font-size: 16px;
  color: #555;
}

.awards-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.award-item {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.award-item img {
  width: 50px;
  margin-bottom: 10px;
}

.award-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #007bff;
}

.award-item p {
  font-size: 14px;
  color: #555;
}

.booking-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.booking-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.booking-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-container form {
  display: flex;
  flex-direction: column;
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container button {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.booking-form-container button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form-container button:hover {
  background-color: #0056b3;
}

.cookies-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 1000;
}

.cookies-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cookies-div p {
  margin-right: 20px;
  font-size: 16px;
}

.cookies-button {
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-button:hover {
  background-color: #0056b3;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 16px;
}

.footer-contact,
.footer-hours {
  flex: 1 1 200px;
  margin: 10px 0;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-contact p,
.footer-hours p {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-socials {
  text-align: center;
  margin: 20px 0;
}

.footer-socials a {
  margin: 0 10px;
}

.footer-socials img {
  width: 30px;
}

.footer-links {
  text-align: center;
  margin: 20px 0;
}

.footer-links ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  width: 50px;
  margin-right: 10px;
}

.site-header h1 {
  font-size: 24px;
  color: #333;
}

.site-nav ul {
  list-style: none;
  display: flex;
}

.site-nav ul li {
  margin-left: 20px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}

.site-nav ul li a:hover {
  color: #007bff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  max-height: 500px;
  background-color: #ddd;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.slide.fade {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 5px;
}

.about-us-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
  padding: 20px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 18px;
  color: #555;
}

.about-image {
  flex: 1 1 400px;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.courses-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.course-item {
  background-color: #fff;
  margin: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.course-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #007bff;
}

.course-item p {
  font-size: 16px;
  color: #555;
}

.teachers-section {
  padding: 60px 20px;
  background-color: #fff;
}

.teachers-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.teachers-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.teachers-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #777;
}

.teachers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.teacher-item {
  background-color: #f9f9f9;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.teacher-item img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.teacher-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #007bff;
}

.teacher-item p {
  font-size: 16px;
  color: #555;
}

.awards-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.award-item {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.award-item img {
  width: 50px;
  margin-bottom: 10px;
}

.award-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #007bff;
}

.award-item p {
  font-size: 14px;
  color: #555;
}

.booking-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.booking-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.booking-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-container form {
  display: flex;
  flex-direction: column;
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container button {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.booking-form-container button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form-container button:hover {
  background-color: #0056b3;
}

.cookies-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 1000;
}

.cookies-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cookies-div p {
  margin-right: 20px;
  font-size: 16px;
}

.cookies-button {
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-button:hover {
  background-color: #0056b3;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 16px;
}

.footer-contact,
.footer-hours {
  flex: 1 1 200px;
  margin: 10px 0;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-contact p,
.footer-hours p {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-socials {
  text-align: center;
  margin: 20px 0;
}

.footer-socials a {
  margin: 0 10px;
}

.footer-socials img {
  width: 30px;
}

.footer-links {
  text-align: center;
  margin: 20px 0;
}

.footer-links ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .site-nav ul li {
    margin: 10px 0;
  }

  .hero-section {
    max-height: 300px;
  }

  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    padding: 10px;
  }

  .course-item {
    margin: 15px auto;
  }

  .teachers-list {
    flex-direction: column;
    align-items: center;
  }

  .teacher-item {
    width: 90%;
    margin: 15px 0;
  }

  .awards-list {
    flex-direction: column;
    align-items: center;
  }

  .award-item {
    width: 80%;
    margin: 15px 0;
  }

  .booking-form-container {
    width: 90%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact,
  .footer-hours,
  .footer-logo {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .site-header h1 {
    font-size: 20px;
  }

  .site-nav ul li a {
    font-size: 16px;
  }

  .about-text h2,
  .courses-container h2,
  .teachers-container h2,
  .awards-container h2,
  .booking-section h2 {
    font-size: 28px;
  }

  .about-text p,
  .courses-container p,
  .teacher-item p,
  .award-item p,
  .booking-section p {
    font-size: 16px;
  }
}

.testimonials-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

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

.testimonials-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.testimonial-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-item h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 5px;
}

.testimonial-item span {
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .testimonials-list {
    flex-direction: column;
    align-items: center;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 800px;
  background-color: #ddd;
}

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

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 24px;
  border-radius: 5px;
}

.slideshow-dots {
  text-align: center;
  position: absolute;
  bottom: 5px;
  width: 100%;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }
  
  .caption {
    font-size: 18px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 250px;
  }
  
  .caption {
    font-size: 16px;
  }
}

.about-us-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.about-us-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.about-us-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

.about-us-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-us-container h2 {
    font-size: 30px;
  }
  .about-us-container p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-us-container h2 {
    font-size: 26px;
  }
  .about-us-container p {
    font-size: 14px;
  }
}

.services-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.services-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.services-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

.services-container h3 {
  font-size: 28px;
  margin-top: 30px;
  color: #007BFF;
}

.services-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  .services-container h2 {
    font-size: 30px;
  }
  .services-container h3 {
    font-size: 24px;
  }
  .services-container p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-container h2 {
    font-size: 26px;
  }
  .services-container h3 {
    font-size: 20px;
  }
  .services-container p {
    font-size: 14px;
  }
}

.title_background {
  background-color: #333;
  padding: 60px 0;
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
}

.text_background {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.text_background .text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}