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

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

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

ul {
  list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 576px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn--primary {
  background-color: #ffcd18;
  color: #1a1a1a;
}

.btn--primary:hover {
  background-color: #e4b300;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid #ffcd18;
  color: #1a1a1a;
}

.btn--secondary:hover {
  background-color: rgba(255, 205, 24, 0.1);
}

.header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.header__inner {
  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;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3f6fff;
}

.nav__list {
  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;
}

@media (max-width: 992px) {
  .nav__list {
    display: none;
  }
}

.nav__link {
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover {
  color: #3f6fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 11px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 22px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 11px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9;
  padding: 100px 20px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu__list {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu__link:hover {
  color: #3f6fff;
}

.hero {
  background: -webkit-gradient(linear, left top, right top, from(#3f6fff), to(#7e43e4));
  background: linear-gradient(90deg, #3f6fff 0%, #7e43e4 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero__text {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.about {
  padding: 100px 0;
}

.about h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.about__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .about__content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about__image {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .btn {
  display: block;
  margin: 0 auto;
  max-width: 250px;
}

.principles {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.principles__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .principles__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.principles .principle__card {
  background-color: #ffffff;
  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);
  position: relative;
}

.principles .principle__card:nth-child(1) {
  border-left: 4px solid #3f6fff;
}

.principles .principle__card:nth-child(2) {
  border-left: 4px solid #7e43e4;
}

.principles .principle__card:nth-child(3) {
  border-left: 4px solid #ffa030;
}

.principles .principle__card:nth-child(4) {
  border-left: 4px solid #ff5e7d;
}

.principles .principle__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.1);
  margin-bottom: 1rem;
}

.principles .btn {
  display: block;
  margin: 0 auto;
  max-width: 250px;
}

.services {
  padding: 100px 0;
}

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

@media (max-width: 992px) {
  .services__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.services .service__card {
  background: linear-gradient(135deg, #3f6fff 0%, #7e43e4 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service__card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.services .service__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.services .service__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.contact h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact__info {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__info p {
  margin-bottom: 0.5rem;
}

.contact__form {
  max-width: 800px;
  margin: 0 auto;
}

.contact__form .form__group {
  margin-bottom: 20px;
}

.contact__form .form__group input,
.contact__form .form__group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.contact__form .form__group input:focus,
.contact__form .form__group textarea:focus {
  outline: none;
  border-color: #3f6fff;
}

.contact__form .form__group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__form .btn {
  width: 100%;
}

.success {
  background: -webkit-gradient(linear, left top, right top, from(#3f6fff), to(#7e43e4));
  background: linear-gradient(90deg, #3f6fff 0%, #7e43e4 100%);
  color: #ffffff;
  padding: 100px 0;
  min-height: 70vh;
  text-align: center;
}

.success h1 {
  margin-bottom: 3rem;
}

.success__content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.success__image {
  border-radius: 10px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 50px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer__inner {
  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: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__inner {
    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;
  }
}

.footer .logo {
  color: #ffffff;
}

.footer__links {
  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;
}

.footer__links a {
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: #3f6fff;
}

@media (max-width: 576px) {
  .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: 15px;
  }
}

.footer .copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

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

.cookie-popup__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.cookie-popup .cookie-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

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

.cookie-popup h3 {
  color: #3f6fff;
  text-align: center;
  margin-bottom: 1rem;
}

.cookie-popup p {
  text-align: center;
  margin-bottom: 2rem;
}

.cookie-popup__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;
}

@media (max-width: 576px) {
  .cookie-popup__buttons {
    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;
  }
}

.cookie-popup__buttons .btn {
  min-width: 200px;
}

@media (max-width: 576px) {
  .cookie-popup__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

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

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