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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #09071f;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
.cta-button,
.submit-button {
  cursor: pointer;
  font-family: "Wix Madefor Display", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

header {
  background-color: #09071f;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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 {
  font-size: 1.8rem;
  font-weight: 700;
}

header .logo a {
  color: #ffffff;
}

header .logo a:hover {
  color: #6e00ff;
}

header .desktop-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

header .desktop-menu ul li a {
  color: #ffffff;
  font-weight: 500;
}

header .desktop-menu ul li a:hover {
  color: #6e00ff;
}

header .mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

header .mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #09071f;
  padding: 20px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mobile-menu.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

header .mobile-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

header .mobile-menu ul li a {
  display: block;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 500;
}

header .mobile-menu ul li a:hover {
  color: #6e00ff;
}

main {
  margin-top: 80px;
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  background-color: #09071f;
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.hero .cta-button {
  display: inline-block;
  background-color: #6e00ff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero .cta-button:hover {
  background-color: #5800cc;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services {
  padding: 80px 0;
}

.services .service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.services .service-content .service-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.services .service-content .service-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services .service-content .service-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.services .service-content .service-text p:last-of-type {
  margin-bottom: 30px;
}

.services .service-content .service-text .cta-button {
  display: inline-block;
  background-color: #6e00ff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
}

.services .service-content .service-text .cta-button:hover {
  background-color: #5800cc;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services .service-content .service-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services .service-content .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tagline {
  padding: 60px 0;
  text-align: center;
}

.tagline h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tagline p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 15px;
}

.tagline p:last-child {
  margin-bottom: 0;
}

.stats {
  padding: 40px 0 60px;
}

.stats .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stats .stat-card {
  background-color: #6e00ff;
  padding: 30px 20px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stats .stat-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stats .stat-card h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .stat-card p {
  font-size: 1rem;
}

.why-us {
  padding: 80px 0;
}

.why-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

.why-us .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us .feature-card {
  background-color: rgba(110, 0, 255, 0.1);
  padding: 30px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.why-us .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(110, 0, 255, 0.2);
}

.why-us .feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #6e00ff;
}

.why-us .feature-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact {
  padding: 80px 0;
  background-image: url("./assets/3.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

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

.contact form .form-group input,
.contact form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 1rem;
}

.contact form .form-group input::-webkit-input-placeholder,
.contact form .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact form .form-group input:-ms-input-placeholder,
.contact form .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact form .form-group input::-ms-input-placeholder,
.contact form .form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact form .form-group input::placeholder,
.contact form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.contact form .submit-button {
  width: 100%;
  padding: 15px 30px;
  background-color: #6e00ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact form .submit-button:hover {
  background-color: #5800cc;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.success-message .container {
  max-width: 800px;
}

.success-message h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.success-message p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.success-message p:last-of-type {
  margin-bottom: 30px;
}

.success-message .cta-button {
  display: inline-block;
  background-color: #6e00ff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
}

.success-message .cta-button:hover {
  background-color: #5800cc;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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;
  gap: 20px;
}

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

footer .social-links a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

footer .social-links a:hover {
  color: #6e00ff;
}

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

footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(9, 7, 31, 0.95);
  padding: 15px 30px;
  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;
  z-index: 1001;
  -webkit-box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -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;
}

.cookie-banner.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner button {
  padding: 8px 20px;
  background-color: #6e00ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background-color: #5800cc;
}

@media (max-width: 992px) {
  .services .service-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .why-us .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .desktop-menu {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  header .mobile-menu {
    display: block;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .services {
    padding: 60px 0;
  }
  .services .service-text h2 {
    font-size: 2rem;
  }
  .tagline h2 {
    font-size: 2rem;
  }
  .stats .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-us {
    padding: 60px 0;
  }
  .why-us h2 {
    font-size: 2rem;
  }
  .why-us .features-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact h2 {
    font-size: 2rem;
  }
  .success-message {
    padding: 80px 0;
  }
  .success-message h1 {
    font-size: 2.5rem;
  }
  .cookie-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  .cookie-banner p {
    padding-right: 0;
    text-align: center;
  }
  .cookie-banner button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services .service-text h2 {
    font-size: 1.8rem;
  }
  .tagline h2 {
    font-size: 1.8rem;
  }
  .why-us h2 {
    font-size: 1.8rem;
  }
  .contact h2 {
    font-size: 1.8rem;
  }
  .success-message h1 {
    font-size: 2rem;
  }
}

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

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