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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", sans-serif;
  line-height: 1.6;
  color: #444;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

a {
  text-decoration: none;
  color: #00B2B2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #007f7f;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  border: none;
  outline: none;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-popup .cookie-content h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cookie-popup .cookie-content p {
  margin-bottom: 15px;
}

.cookie-popup .cookie-content a {
  color: #00B2B2;
  text-decoration: underline;
}

.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cookie-popup .cookie-content .cookie-buttons button {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-popup .cookie-content .cookie-buttons button.btn-accept {
  background-color: #00B2B2;
  color: #fff;
}

.cookie-popup .cookie-content .cookie-buttons button.btn-accept:hover {
  background-color: #007f7f;
}

.cookie-popup .cookie-content .cookie-buttons button.btn-learn-more {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cookie-popup .cookie-content .cookie-buttons button.btn-learn-more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

header {
  background-color: #fff;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo a h1 {
  color: #00B2B2;
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

header .desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

header .desktop-nav ul li {
  margin-left: 25px;
}

header .desktop-nav ul li a {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

header .desktop-nav ul li a:hover {
  color: #00B2B2;
}

header .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

header .mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #fff;
  z-index: 200;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .mobile-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav .mobile-nav-header h2 {
  color: #00B2B2;
  margin: 0;
  font-size: 24px;
}

.mobile-nav .mobile-nav-header .close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  margin-bottom: 25px;
}

.mobile-nav ul li a {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #00B2B2;
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  max-width: 800px;
}

.hero .hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 700px;
}

.about {
  padding: 80px 0;
  background-color: #fff;
}

.about .about-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .about-content .about-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .about-content .about-text h2 {
  color: #00B2B2;
  font-size: 32px;
  margin-bottom: 25px;
}

.about .about-content .about-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

.topics {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.topics h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.topics .topics-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.topics .topics-grid .topic-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.topics .topics-grid .topic-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.topics .topics-grid .topic-card h3 {
  color: #00B2B2;
  font-size: 22px;
  margin-bottom: 15px;
}

.topics .topics-grid .topic-card p {
  font-size: 16px;
}

.audience {
  padding: 80px 0;
  background-color: #fff;
}

.audience h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.audience .audience-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.audience .audience-grid .audience-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.audience .audience-grid .audience-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.audience .audience-grid .audience-card h3 {
  color: #333;
  font-size: 22px;
  margin-bottom: 15px;
}

.audience .audience-grid .audience-card p {
  font-size: 16px;
}

.learn {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.learn h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.learn .learn-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.learn .learn-content .learn-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learn .learn-content .learn-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

.why-choose {
  padding: 80px 0;
  background-color: #fff;
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.why-choose .why-choose-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-choose .why-choose-content p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
}

.contact {
  padding: 80px 0;
  background-color: #00B2B2;
  color: #fff;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.contact .contact-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

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

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

.contact form .form-group input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
}

.contact form .form-group input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.contact form .btn-submit {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.contact form .btn-submit:hover {
  background-color: #2b2b2b;
}

.success-section {
  padding: 100px 0;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success-section .success-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #f5f5f5;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-section .success-content h2 {
  color: #00B2B2;
  font-size: 36px;
  margin-bottom: 20px;
}

.success-section .success-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.success-section .success-content .success-actions {
  margin-top: 40px;
}

.success-section .success-content .success-actions .btn-back {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00B2B2;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.success-section .success-content .success-actions .btn-back:hover {
  background-color: #007f7f;
}

footer {
  padding: 40px 0;
  background-color: #111;
  color: #fff;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-links {
  margin-bottom: 20px;
}

footer .footer-links a {
  color: #fff;
  margin: 0 15px;
  font-size: 16px;
}

footer .footer-links a:hover {
  color: #00B2B2;
}

footer .footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .about-content,
  .learn-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-image,
  .learn-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (max-width: 768px) {
  header .desktop-nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero {
    padding: 80px 0;
  }
  .hero .hero-content h2 {
    font-size: 36px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
  .topics-grid,
  .audience-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .about,
  .topics,
  .audience,
  .learn,
  .why-choose,
  .contact {
    padding: 60px 0;
  }
  .about h2,
  .topics h2,
  .audience h2,
  .learn h2,
  .why-choose h2,
  .contact h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h2 {
    font-size: 28px;
  }
  .cookie-popup .cookie-content .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-popup .cookie-content .cookie-buttons button {
    width: 100%;
  }
  footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-links a {
    margin: 5px 0;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy h1 {
  font-size: 40px;
}
/*# sourceMappingURL=style.css.map */