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

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

ul {
  list-style: none;
}

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

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

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

section {
  padding: 60px 0;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

h3 {
  font-size: 20px;
}

p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #6355EE;
  color: #fff;
}

.btn-primary:hover {
  background-color: #3827e9;
}

.btn-secondary {
  background-color: #f8f8f8;
  color: #333;
}

.btn-secondary:hover {
  background-color: #dfdfdf;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
  display: none;
}

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

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

.cookie-popup .cookie-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: left;
}

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

.cookie-popup .cookie-content p a {
  color: #6355EE;
  text-decoration: underline;
}

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

.header {
  background-color: #fff;
  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 .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-weight: 700;
  font-size: 22px;
  color: #6355EE;
}

.header .main-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: 25px;
}

@media (max-width: 992px) {
  .header .main-nav ul {
    display: none;
  }
}

.header .main-nav a {
  font-size: 14px;
  font-weight: 500;
}

.header .main-nav a:hover {
  color: #6355EE;
}

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

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

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

.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(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .header .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.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;
  -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: 15px;
  padding: 0 15px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  width: 100%;
}

.mobile-menu a:hover {
  color: #6355EE;
}

.hero {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("./assets/hero-bg.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/1.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 230px 0;
}

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

.hero .hero-content h1 {
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
}

.services {
  background-color: #fff;
}

.services .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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

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

.services .service-card {
  padding: 30px 20px;
  border-radius: 4px;
  height: 100%;
}

.services .service-card.purple {
  background-color: #6355EE;
  color: #fff;
}

.services .service-card.white {
  background-color: #f8f8f8;
  color: #333;
  border: 1px solid #eee;
}

.services .service-card h3 {
  margin-bottom: 15px;
}

.services .service-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.why-us {
  background-color: #f8f8f8;
  text-align: center;
}

.why-us .benefits-list {
  max-width: 600px;
  margin: 0 auto 30px;
}

.why-us .benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.why-us .benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: #6355EE;
  border-radius: 2px;
  background-image: url("./assets/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.for-whom {
  background-color: #fff;
}

.for-whom .for-whom-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;
  gap: 40px;
}

@media (max-width: 992px) {
  .for-whom .for-whom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.for-whom .for-whom-content .text-content h2 {
  text-align: left;
}

.for-whom .for-whom-content .text-content ul li {
  margin-bottom: 10px;
}

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

.for-whom .for-whom-content .image-content img {
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ready-for-growth {
  background-color: #fff;
}

.ready-for-growth {
  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;
  gap: 40px;
}
.growth-content {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 992px) {
  .ready-for-growth .growth-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.ready-for-growth .growth-content .text-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ready-for-growth .growth-content .text-content h2 {
  text-align: left;
}

.ready-for-growth .growth-content .image-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ready-for-growth .growth-content .image-content img {
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact {
  background-color: #f8f8f8;
}

.contact form {
  max-width: 800px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr ;
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.contact form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact form .form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .contact form .form-group.full-width {
    grid-column: span 1;
  }
}

.contact form .form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact form .form-group input,
.contact form .form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  resize: vertical;
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  border-color: #6355EE;
}

.contact form button {
  grid-column: span 2;
  justify-self: flex-start;
}

@media (max-width: 768px) {
  .contact form button {
    grid-column: span 1;
    width: 100%;
  }
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

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

.footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer .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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-links a {
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.other-page{
  .container{
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  h1{
    text-align: center;
  }
}

.other-page.thank {
  .container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}