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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background-color: #fff;
}

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

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

ul {
  list-style: none;
}

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

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

p {
  margin-bottom: 15px;
}

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

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

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

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

.btn-primary:hover {
  background-color: #863a6f;
}

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

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

.btn-outline {
  background-color: transparent;
  border: 1px solid #a94a8c;
  color: #a94a8c;
}

.btn-outline:hover {
  background-color: #a94a8c;
  color: #fff;
}

.header {
  background-color: #a94a8c;
  color: #fff;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.nav__item {
  margin-left: 30px;
}

.nav__item:first-child {
  margin-left: 0;
}

.nav__link {
  position: relative;
  padding: 5px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

section {
  padding: 80px 0;
}

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

.difference {
  background-color: #fff;
}

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

@media (max-width: 992px) {
  .difference__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.difference__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.difference__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.difference__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.competence {
  background-color: #f5f5f5;
}

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

@media (max-width: 992px) {
  .competence__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

.competence__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.competence__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.competence__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.features {
  background-color: #fff;
}

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

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

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

.feature-card {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card__image {
  height: 200px;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature-card__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.feature-card__title {
  padding: 20px 20px 10px;
  font-size: 20px;
}

.feature-card__text {
  padding: 0 20px 20px;
}

.benefits {
  background-color: #f5f5f5;
}

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

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

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

.benefit-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card__title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #a94a8c;
}

.approach {
  background-color: #fff;
}

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

@media (max-width: 992px) {
  .approach__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.approach__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.approach__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.trust {
  background-color: #f5f5f5;
}

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

@media (max-width: 992px) {
  .trust__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

.trust__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.trust__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact {
  background-color: #fff;
}

.contact__subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a94a8c;
  -webkit-box-shadow: 0 0 0 2px rgba(169, 74, 140, 0.2);
          box-shadow: 0 0 0 2px rgba(169, 74, 140, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 50px 0 30px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.footer__logo {
  margin-bottom: 15px;
  display: block;
}

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

.footer__link:hover {
  color: #a94a8c;
}

.footer__copyright {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .footer__social {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #a94a8c;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
  -webkit-animation: slideUp 0.3s forwards;
          animation: slideUp 0.3s forwards;
}

.cookie-popup__content {
  text-align: center;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.cookie-popup__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 120px;
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.success {
  padding: 100px 0;
}

.success__title {
  font-size: 36px;
  margin-bottom: 20px;
}

.success__text {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.success__link {
  color: #a94a8c;
  text-decoration: underline;
}

.success__link:hover {
  color: #863a6f;
}
/*# sourceMappingURL=style.css.map */