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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #6a1b9a;
  color: #fff;
  z-index: 1000;
  padding: 20px;
}

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

.cookie-banner .cookie-content h2 {
  margin-bottom: 10px;
  text-align: center;
}

.cookie-banner .cookie-content p {
  margin-bottom: 20px;
}

.cookie-banner .cookie-content p a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner .cookie-content p a:hover {
  color: #e6e6e6;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.cookie-banner .cookie-content .cookie-buttons .btn-accept {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #6a1b9a;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.cookie-banner .cookie-content .cookie-buttons .btn-accept:hover {
  background-color: #e6e6e6;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.cookie-banner .cookie-content .cookie-buttons .btn-accept:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-banner .cookie-content .cookie-buttons .btn-reject {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  border: 1px solid #fff;
}

.cookie-banner .cookie-content .cookie-buttons .btn-reject:hover {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.cookie-banner .cookie-content .cookie-buttons .btn-reject:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

.header .logo {
  font-size: 24px;
  font-weight: 700;
}

.header .logo a {
  color: #333;
}

.header .desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .header .desktop-nav {
    display: block;
  }
}

.header .desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header .desktop-nav ul li a {
  color: #333;
  font-weight: 500;
  position: relative;
}

.header .desktop-nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #6a1b9a;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.header .desktop-nav ul li a:hover:after {
  width: 100%;
}

.header .contact-btn .btn-contact {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.header .contact-btn .btn-contact:hover {
  background-color: #4c136f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.header .contact-btn .btn-contact:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 768px) {
  .header .contact-btn .btn-contact {
    display: none;
  }
}

.header .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}

.header .mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(8px, -8px);
          transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}

.mobile-nav.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

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

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

.mobile-nav ul li a {
  display: block;
  padding: 10px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-nav ul li a:hover {
  color: #6a1b9a;
}

.hero {
  padding: 60px 0;
}

.hero .hero-content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero .hero-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.hero .hero-text {
  max-width: 600px;
}

.hero .hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

@media (min-width: 992px) {
  .hero .hero-text h1 {
    font-size: 42px;
  }
}

.hero .hero-text p {
  margin-bottom: 20px;
  color: #666;
}

.hero .hero-text .btn-explore {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  margin-top: 20px;
}

.hero .hero-text .btn-explore:hover {
  background-color: #4c136f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.hero .hero-text .btn-explore:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hero .hero-image {
  max-width: 500px;
}

.hero .hero-image img {
  border-radius: 10px;
}

.explore {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.explore .explore-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .explore .explore-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .explore .explore-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.explore .explore-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -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;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.explore .explore-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.explore .explore-item .explore-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.explore .explore-item .explore-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.explore .explore-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.explore .explore-item p {
  color: #666;
}

.trending {
  padding: 60px 0;
}

.trending .trending-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .trending .trending-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trending .trending-image {
  max-width: 500px;
}

.trending .trending-image img {
  border-radius: 10px;
}

.trending .trending-text {
  max-width: 600px;
}

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

.trending .trending-text p {
  margin-bottom: 20px;
  color: #666;
}

.webinars {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.webinars h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

.webinars .webinars-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .webinars .webinars-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.webinars .webinar-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.webinars .webinar-card .webinar-image {
  height: 200px;
}

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

.webinars .webinar-card .webinar-info {
  padding: 20px;
}

.webinars .webinar-card .webinar-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.webinars .webinar-card .webinar-info .webinar-date,
.webinars .webinar-card .webinar-info .webinar-speaker {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.webinars .webinar-card .webinar-info .webinar-focus {
  color: #666;
}

.webinars .webinar-card .webinar-info .webinar-focus span {
  font-weight: 600;
  color: #333;
}

.ai-section {
  padding: 60px 0;
}

.ai-section .ai-content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .ai-section .ai-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ai-section .ai-text {
  max-width: 600px;
}

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

.ai-section .ai-text p {
  margin-bottom: 20px;
  color: #666;
}

.ai-section .ai-text .ai-focus {
  margin-top: 30px;
}

.ai-section .ai-text .ai-focus h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.ai-section .ai-text .ai-focus ul {
  padding-left: 20px;
}

.ai-section .ai-text .ai-focus ul li {
  margin-bottom: 10px;
  color: #666;
  position: relative;
}

.ai-section .ai-text .ai-focus ul li:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6a1b9a;
}

.ai-section .ai-image {
  max-width: 500px;
}

.ai-section .ai-image img {
  border-radius: 10px;
}

.resources {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.resources .resources-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.resources .resources-content p {
  margin-bottom: 20px;
  color: #666;
}

.signup {
  padding: 60px 0;
  background: url("./assets/12.png");
  background-size: cover;
  background-position: center;
}

.signup .signup-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.signup .signup-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.signup .signup-content p {
  margin-bottom: 30px;
}

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

.signup .signup-form .form-group input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.signup .signup-form .form-group input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(106, 27, 154, 0.5);
          box-shadow: 0 0 0 2px rgba(106, 27, 154, 0.5);
}

.signup .signup-form .form-group .btn-create-account {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4a148c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

.signup .signup-form .form-group .btn-create-account:hover {
  background-color: #320e5f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.signup .signup-form .form-group .btn-create-account:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer {
  background-color: #fff;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.footer .footer-content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
}

.footer .footer-content .footer-copyright {
  color: #666;
  font-size: 14px;
}

.footer .footer-content .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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer .footer-content .footer-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.footer .footer-content .footer-links a {
  color: #666;
  font-size: 14px;
}

.footer .footer-content .footer-links a:hover {
  color: #6a1b9a;
  text-decoration: underline;
}

.privacy {
  padding: 100px 0;
}

.privacy h1 {
  font-size: 40px;
  margin-bottom: 24px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */