* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  color: #03045e;
  background-color: #f0f8ff;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 375px) {
  .container {
    max-width: 355px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 728px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 984px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.title {
  font-size: 28px;
  font-weight: 700;
  color: #03045e;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 44px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--contained {
  background-color: #0077b6;
  color: #f0f8ff;
  border: 2px solid #0077b6;
}
.btn--contained:hover {
  background-color: #005683;
  border-color: #005683;
}
.btn--outlined {
  background-color: transparent;
  color: #0077b6;
  border: 2px solid #0077b6;
}
.btn--outlined:hover {
  background-color: #0077b6;
  color: #f0f8ff;
}

.header {
  background-color: #03045e;
  padding: 20px 0;
  color: #f0f8ff;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-size: 28px;
  font-weight: 700;
  color: #f0f8ff;
  text-decoration: none;
  z-index: 100;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 32px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 94, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 90;
    overflow-y: auto;
  }
}
.header__nav.active {
  transform: translateX(0);
}
.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .header__menu {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}
.header__menu-item {
  margin: 0;
}
.header__menu-link {
  color: #f0f8ff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #00b4d8;
}
@media (max-width: 767px) {
  .header__menu-link {
    font-size: 24px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f0f8ff;
  transition: all 0.3s ease;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  color: #f0f8ff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 94, 0.6);
  z-index: -1;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 60px;
  }
}
.hero__text {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 18px;
  }
}

.stats {
  padding: 60px 0;
  text-align: center;
}
.stats__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats__list-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 4, 94, 0.08);
  border-top: 5px solid #0077b6;
}
.stats__item-title {
  font-size: 22px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 10px;
}
.stats__item-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #00b4d8;
  margin-bottom: 15px;
}
.stats__item-text {
  font-size: 15px;
  color: #03045e;
}

.about {
  padding: 60px 0;
  text-align: center;
  background-color: #00b4d8;
  color: #f0f8ff;
}
.about .title {
  color: #f0f8ff;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .about__content {
    flex-direction: row;
    text-align: left;
  }
}
.about__description {
  flex: 1;
}
.about__text {
  font-size: 16px;
  margin-bottom: 15px;
}
.about__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 17px;
  }
}
.about img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 4, 94, 0.2);
}
@media (min-width: 768px) {
  .about img {
    max-width: 45%;
  }
}

.services {
  padding: 60px 0;
  text-align: center;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__list-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 4, 94, 0.05);
  border-bottom: 4px solid #90e0ef;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #03045e;
  margin-bottom: 10px;
}
.services__item-text {
  font-size: 15px;
  color: #03045e;
  margin-bottom: 15px;
  flex-grow: 1;
}
.services span {
  display: inline-block;
  background-color: #90e0ef;
  color: #03045e;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.features {
  padding: 60px 0;
  text-align: center;
  background-color: #0077b6;
  color: #f0f8ff;
}
.features .title {
  color: #f0f8ff;
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features__list-item {
  background-color: rgba(240, 248, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 4, 94, 0.1);
}
.features__item-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.features__item-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f0f8ff;
}
.features__item-text {
  font-size: 15px;
  color: rgba(240, 248, 255, 0.9);
}

.process {
  padding: 60px 0;
  text-align: center;
}
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .process__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process__list-item {
  position: relative;
  padding-top: 60px;
}
.process__list-item::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #90e0ef;
  z-index: 0;
}
@media (min-width: 768px) {
  .process__list-item::before {
    display: none;
  }
}
.process__list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -40px;
  width: 40px;
  height: 3px;
  background-color: #90e0ef;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .process__list-item:not(:last-child)::after {
    display: block;
  }
}
.process__item-step-bg {
  background-color: #0077b6;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}
.process__item-step {
  font-size: 30px;
  font-weight: 700;
  color: #f0f8ff;
}
.process__item-title {
  font-size: 22px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 10px;
  margin-top: 30px;
}
.process__item-text {
  font-size: 15px;
  color: #03045e;
}

.testimonials {
  padding: 60px 0;
  text-align: center;
  background-color: #f0f8ff;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__list-item {
  background-color: #00b4d8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(3, 4, 94, 0.1);
  color: #f0f8ff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials__item-text {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonials__item-user {
  text-align: right;
}
.testimonials__item-user-name {
  font-size: 18px;
  font-weight: 700;
  color: #f0f8ff;
  margin-bottom: 5px;
}
.testimonials__item-user-location {
  font-size: 14px;
  color: rgba(240, 248, 255, 0.8);
}

.contact {
  padding: 60px 0;
  text-align: center;
  background-color: #f0f8ff;
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #03045e;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 17px;
  }
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #00b4d8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(3, 4, 94, 0.1);
  text-align: left;
}
.contact__form-group {
  margin-bottom: 25px;
}
.contact__form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #f0f8ff;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact__form-label {
    font-size: 16px;
  }
}
.contact__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(240, 248, 255, 0.4);
  border-radius: 5px;
  font-size: 16px;
  background-color: rgba(240, 248, 255, 0.9);
  color: #03045e;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.3);
}
.contact__form-input::-moz-placeholder {
  color: rgba(3, 4, 94, 0.6);
}
.contact__form-input::placeholder {
  color: rgba(3, 4, 94, 0.6);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn--contained {
  width: 100%;
  padding: 15px;
  font-size: 17px;
  margin-top: 20px;
}
.contact__status {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #0077b6;
}

.footer {
  background-color: #03045e;
  color: #f0f8ff;
  padding: 40px 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__block {
    align-items: flex-start;
  }
}
.footer__block p {
  font-size: 14px;
  color: rgba(240, 248, 255, 0.8);
}
@media (min-width: 768px) {
  .footer__block p {
    font-size: 15px;
  }
}
.footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #f0f8ff;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}
@media (min-width: 768px) {
  .footer__logo {
    font-size: 28px;
  }
}
.footer__title {
  font-size: 18px;
  font-weight: 700;
  color: #90e0ef;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__title {
    text-align: left;
    font-size: 20px;
  }
}
.footer__menu, .footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__menu, .footer__list {
    align-items: flex-start;
  }
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-item:last-child {
  margin-bottom: 0;
}
.footer__menu-link {
  color: rgba(240, 248, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #00b4d8;
}
.footer__list-item {
  font-size: 15px;
  color: rgba(240, 248, 255, 0.8);
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__list-item {
    text-align: left;
  }
}
.footer__list-item strong {
  color: #f0f8ff;
}
.footer__list-item:last-child {
  margin-bottom: 0;
}
.footer__copy {
  font-size: 13px;
  color: rgba(240, 248, 255, 0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(240, 248, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__copy {
    font-size: 14px;
  }
}

.legal {
  padding: 60px 0;
  color: #03045e;
  background-color: #f0f8ff;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
.legal h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0077b6;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .legal h1 {
    font-size: 44px;
  }
}
.legal h2 {
  font-size: 24px;
  font-weight: 700;
  color: #03045e;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .legal h2 {
    font-size: 32px;
  }
}
.legal h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0077b6;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal h3 {
    font-size: 24px;
  }
}
.legal p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #03045e;
}
@media (min-width: 768px) {
  .legal p {
    font-size: 17px;
  }
}
.legal ul {
  padding-left: 25px;
  margin-bottom: 15px;
}
.legal ul li {
  list-style: disc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #03045e;
}
@media (min-width: 768px) {
  .legal ul li {
    font-size: 17px;
  }
}
.legal ol {
  padding-left: 25px;
  margin-bottom: 15px;
}
.legal ol li {
  list-style: decimal;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #03045e;
}
@media (min-width: 768px) {
  .legal ol li {
    font-size: 17px;
  }
}
.legal a {
  color: #0077b6;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal a:hover {
  color: #005683;
}
.legal__last-updated {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #00b4d8;
  margin-top: 30px;
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(3, 4, 94, 0.95);
  color: #f0f8ff;
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(3, 4, 94, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-banner.show {
  transform: translateY(0);
  display: block;
}
.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(240, 248, 255, 0.9);
}
@media (min-width: 768px) {
  .cookie-banner__text {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 16px;
  }
}
.cookie-banner__text a {
  color: #00b4d8;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #0cd7ff;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .cookie-banner__actions {
    flex-direction: row;
  }
}
.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 15px;
  min-width: 120px;
}
.cookie-banner .btn--accept {
  background-color: #0077b6;
  color: #f0f8ff;
  border: 2px solid #0077b6;
}
.cookie-banner .btn--accept:hover {
  background-color: #005683;
  border-color: #005683;
}
.cookie-banner .btn--decline {
  background-color: transparent;
  color: #0077b6;
  border: 2px solid #0077b6;
}
.cookie-banner .btn--decline:hover {
  background-color: #0077b6;
  color: #f0f8ff;
}