/* Variables */
/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: "Goldman", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.btn-primary {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#be00ff), to(#7400ff));
  background: linear-gradient(90deg, #be00ff, #7400ff);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(190, 0, 255, 0.3);
          box-shadow: 0 10px 20px rgba(190, 0, 255, 0.3);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #be00ff;
  text-transform: uppercase;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid #be00ff;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup .cookie-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.cookie-popup .cookie-content p {
  margin: 0;
  text-align: center;
}

.cookie-popup .cookie-content button {
  background: -webkit-gradient(linear, left top, right top, from(#be00ff), to(#7400ff));
  background: linear-gradient(90deg, #be00ff, #7400ff);
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Goldman", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-popup .cookie-content button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Header */
.hero {
  min-height: 100vh;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(190, 0, 255, 0.15), transparent 60%);
  z-index: 0;
}

.logo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #be00ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(5deg);
            transform: translateY(-20px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(5deg);
            transform: translateY(-20px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(116, 0, 255, 0.15), transparent 60%);
  z-index: 0;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-image img {
  max-width: 80%;
  -webkit-animation: spin 20s linear infinite;
          animation: spin 20s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Competencies Section */
.competencies {
  padding: 100px 0;
  position: relative;
  background-color: rgba(190, 0, 255, 0.05);
}

.competencies .competencies-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.competencies .competency-card {
  background: rgba(142, 0, 255, 0.25);
  border-radius: 12px;
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(190, 0, 255, 0.2);
}

.competencies .competency-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(190, 0, 255, 0.2);
          box-shadow: 0 15px 30px rgba(190, 0, 255, 0.2);
}

.competencies .competency-card h3 {
  color: #be00ff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Courses Section */
.courses {
  padding: 100px 0;
}

.courses .courses-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.courses .course-card {
  background: rgba(142, 0, 255, 0.25);
  border-radius: 12px;
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(190, 0, 255, 0.2);
}

.courses .course-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(190, 0, 255, 0.2);
          box-shadow: 0 15px 30px rgba(190, 0, 255, 0.2);
}

.courses .course-card .course-image {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.courses .course-card .course-image img {
  max-width: 150px;
  height: auto;
  -webkit-animation: pulse 3s ease-in-out infinite;
          animation: pulse 3s ease-in-out infinite;
}

.courses .course-card h3 {
  color: #be00ff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.courses .course-card p {
  margin-bottom: 15px;
}

.courses .course-card .course-details {
  margin-top: auto;
  margin-bottom: 15px;
}

.courses .course-card .course-details p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.courses .course-card .course-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #be00ff;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* For Whom Section */
.for-whom {
  padding: 100px 0;
  position: relative;
}

.for-whom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(116, 0, 255, 0.1), transparent 70%);
  z-index: 0;
}

.for-whom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.for-whom-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.for-whom-image img {
  max-width: 80%;
  -webkit-animation: rotate3d 15s ease-in-out infinite;
          animation: rotate3d 15s ease-in-out infinite;
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(1, 1, 1, 180deg);
            transform: rotate3d(1, 1, 1, 180deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, 360deg);
            transform: rotate3d(1, 1, 1, 360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotate3d(1, 1, 1, 0deg);
            transform: rotate3d(1, 1, 1, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(1, 1, 1, 180deg);
            transform: rotate3d(1, 1, 1, 180deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 1, 1, 360deg);
            transform: rotate3d(1, 1, 1, 360deg);
  }
}

.for-whom-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.for-whom-text p {
  margin-bottom: 1.5rem;
}

/* Registration Form */
.registration {
  padding: 100px 0;
  background-color: rgba(190, 0, 255, 0.05);
}

.registration .form-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.registration form {
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.registration form input {
  padding: 15px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(190, 0, 255, 0.3);
  color: #ffffff;
  font-family: "Goldman", sans-serif;
}

.registration form input:focus {
  outline: none;
  border-color: #be00ff;
  -webkit-box-shadow: 0 0 10px rgba(190, 0, 255, 0.3);
          box-shadow: 0 0 10px rgba(190, 0, 255, 0.3);
}

.registration form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.registration form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.registration form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.registration form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.registration form button {
  margin-top: 10px;
  font-family: "Goldman", sans-serif;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  padding: 50px 0;
  background-color: rgba(190, 0, 255, 0.2);
}

.footer .footer-content {
  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;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

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

.footer .company-info {
  border-top: 1px solid rgba(190, 0, 255, 0.3);
  padding-top: 30px;
  text-align: center;
}

.footer .company-info p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Success Page */
.success-hero {
  min-height: 30vh;
}

.success-message {
  padding: 80px 0;
  text-align: center;
}

.success-message .success-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-message .success-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #be00ff;
}

.success-message .success-content .success-image {
  margin: 40px 0;
}

.success-message .success-content .success-image img {
  max-width: 200px;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.success-message .success-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.success-message .success-content .btn-primary {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .for-whom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
  .hero-image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 30px;
  }
  .about-image {
    margin-bottom: 30px;
  }
  .for-whom-image {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .competencies-grid,
  .courses-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .registration form {
    padding: 0 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .competency-card,
  .course-card {
    padding: 20px;
  }
  .hero {
    padding: 30px 0;
  }
  .about,
  .competencies,
  .courses,
  .for-whom,
  .registration {
    padding: 60px 0;
  }
}

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

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