@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 36px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 22px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 18px;
  }
}

p {
  margin-bottom: 15px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #6c757d;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  outline: none;
}
@media (max-width: 576px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.btn-primary {
  background-color: #6c5ce7;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #4430e0;
}

.btn-secondary {
  background-color: transparent;
  color: #6c5ce7;
  border: 1px solid #6c5ce7;
}
.btn-secondary:hover {
  background-color: #6c5ce7;
  color: #ffffff;
}

.button-center {
  text-align: center;
  margin-top: 30px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -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: 15px 0;
  display: none;
}
.cookie-notice.show {
  display: block;
}
.cookie-notice .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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.cookie-notice .cookie-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}
.cookie-notice .cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
}
.cookie-notice .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;
}
@media (max-width: 576px) {
  .cookie-notice .cookie-content .cookie-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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .cookie-notice .cookie-content .cookie-buttons .btn {
    width: 100%;
  }
}

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 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;
}
.header .logo {
  font-size: 20px;
  font-weight: 700;
  color: #6c5ce7;
}
@media (max-width: 992px) {
  .header .main-nav {
    display: none;
  }
}
.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;
}
.header .main-nav ul li a {
  color: #333333;
  font-weight: 500;
  position: relative;
}
.header .main-nav ul li a:hover {
  color: #6c5ce7;
}
.header .main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6c5ce7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .main-nav ul li a:hover::after {
  width: 100%;
}
.header .mobile-menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}
@media (max-width: 992px) {
  .header .mobile-menu-toggle {
    display: block;
  }
}
.header .mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #333333;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .mobile-menu-toggle span:nth-child(1) {
  top: 0;
}
.header .mobile-menu-toggle span:nth-child(2) {
  top: 8px;
}
.header .mobile-menu-toggle span:nth-child(3) {
  top: 16px;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 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);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #ffffff;
  z-index: 99;
  padding: 20px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.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;
}
.mobile-menu ul li a {
  font-size: 18px;
  color: #333333;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
}
.mobile-menu ul li a:hover {
  color: #6c5ce7;
}

.hero-section {
  background-image: url(../assets/i0.png);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-section .hero-content h1 {
  margin-bottom: 20px;
  color: #222;
}
.hero-section .hero-content p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #222;
}
@media (max-width: 576px) {
  .hero-section .hero-content p {
    font-size: 16px;
  }
}

.results-section {
  background-color: #f8f9fa;
}
.results-section .stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .results-section .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .results-section .stats-container {
    grid-template-columns: 1fr;
  }
}
.results-section .stats-container .stat-item {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 25px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.results-section .stats-container .stat-item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.results-section .stats-container .stat-item h3 {
  color: #6c5ce7;
  font-size: 28px;
  margin-bottom: 10px;
}
.results-section .stats-container .stat-item p {
  font-weight: 600;
  margin-bottom: 15px;
}
.results-section .stats-container .stat-item small {
  display: block;
  color: #6c757d;
  font-size: 14px;
}

.approach-section .approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .approach-section .approach-grid {
    grid-template-columns: 1fr;
  }
}
.approach-section .approach-grid .approach-item {
  background-color: #f8f9fa;
  border-radius: 4px;
  padding: 25px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.approach-section .approach-grid .approach-item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.approach-section .approach-grid .approach-item h3 {
  color: #6c5ce7;
  margin-bottom: 15px;
}
.approach-section .approach-grid .approach-item p {
  color: #333333;
}

.about-section {
  background-color: #f8f9fa;
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.about-section .about-content .about-text p {
  margin-bottom: 15px;
  text-align: center;
}

.examples-section .examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .examples-section .examples-grid {
    grid-template-columns: 1fr;
  }
}
.examples-section .examples-grid .example-card {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.examples-section .examples-grid .example-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.examples-section .examples-grid .example-card .example-image {
  height: 200px;
  overflow: hidden;
}
.examples-section .examples-grid .example-card .example-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.examples-section .examples-grid .example-card .example-image img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.examples-section .examples-grid .example-card h3 {
  padding: 20px;
  font-size: 18px;
}

.team-section {
  background-color: #f8f9fa;
}
.team-section .team-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}
.team-section .team-images .team-image {
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
}
@media (max-width: 576px) {
  .team-section .team-images .team-image {
    height: 300px;
  }
}
.team-section .team-images .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.future-section .future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .future-section .future-grid {
    grid-template-columns: 1fr;
  }
}
.future-section .future-grid .future-card {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.future-section .future-grid .future-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.future-section .future-grid .future-card .future-image {
  height: 200px;
  overflow: hidden;
}
.future-section .future-grid .future-card .future-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.future-section .future-grid .future-card .future-image img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.future-section .future-grid .future-card h3 {
  padding: 20px;
  font-size: 18px;
}

.contact-section {
  background-color: #f8f9fa;
}
.contact-section .contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .contact-section .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #6c5ce7;
}
.contact-section .contact-form .form-group textarea {
  height: 150px;
  resize: vertical;
}
.contact-section .contact-form .form-submit {
  text-align: center;
}

.footer {
  background-color: #2d3436;
  color: #ffffff;
  padding: 50px 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer .footer-content .footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #6c5ce7;
  margin-bottom: 20px;
}
.footer .footer-content .footer-contact .contact-label {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .footer-content .footer-contact .contact-item {
  margin-bottom: 10px;
}
.footer .footer-content .footer-contact .contact-item .contact-title {
  font-weight: 600;
  margin-bottom: 5px;
}
.footer .footer-content .footer-contact .contact-item .contact-value {
  color: #e9ecef;
}
.footer .footer-content .footer-address .address-label {
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .footer-content .footer-address .address-value {
  color: #e9ecef;
  margin-bottom: 20px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  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;
}
@media (max-width: 576px) {
  .footer .footer-bottom {
    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 .footer-bottom .copyright {
  font-size: 14px;
  color: #e9ecef;
}
.footer .footer-bottom .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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .footer .footer-bottom .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;
  }
}
.footer .footer-bottom .footer-links a {
  font-size: 14px;
  color: #e9ecef;
}
.footer .footer-bottom .footer-links a:hover {
  color: #6c5ce7;
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}
.text-section {
  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;
  padding: 60px 0;
}
.text-section h2 {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}
.text-section p {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #3E3E3E;
}