* {
  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 {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #34495e;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.header {
  background-color: #2c3e50;
  padding: 15px 0;
  color: #ecf0f1;
  position: absolute;
  width: 100%;
  z-index: 100;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ecf0f1;
  text-decoration: none;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    font-size: 32px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out forwards;
}
@media (min-width: 1024px) {
  .header__nav.open {
    display: block;
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }
}
.header__menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .header__menu {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.header__menu-item {
  margin: 10px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .header__menu-item {
    margin-left: 30px;
    margin-bottom: 0;
  }
}
.header__menu-link {
  font-weight: 600;
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 0;
  display: block;
}
.header__menu-link:hover {
  color: #e67e22;
}
@media (min-width: 1024px) {
  .header__menu-link {
    padding: 0;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #ecf0f1;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.header__burger.open .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header__burger.open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.open .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body.no-scroll {
  overflow: hidden;
}

.title {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}
.btn--contained {
  background-color: #e67e22;
  color: #ecf0f1;
  border: 2px solid #e67e22;
}
.btn--contained:hover {
  background-color: #bf6516;
  border-color: #bf6516;
}
.btn--outlined {
  background-color: transparent;
  color: #e67e22;
  border: 2px solid #e67e22;
}
.btn--outlined:hover {
  background-color: #e67e22;
  color: #ecf0f1;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #ecf0f1;
  padding: 138px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.6);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__wrapper {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hero__wrapper {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .hero__wrapper {
    max-width: 60%;
  }
}
.hero__title {
  font-family: "Oswald", sans-serif;
  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;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 20px;
  }
}

.stats {
  padding: 40px 0;
  background-color: #ecf0f1;
}
.stats__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
@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: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.stats__item-title {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .stats__item-title {
    font-size: 48px;
  }
}
.stats__item-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .stats__item-subtitle {
    font-size: 20px;
  }
}
.stats__item-text {
  font-size: 14px;
  color: #34495e;
}

.about {
  padding: 40px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__content {
    flex-direction: row;
    gap: 50px;
    text-align: left;
  }
}
.about__description {
  flex: 1;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #34495e;
}
.about__text:last-child {
  margin-bottom: 0;
}
.about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .about img {
    flex: 1;
    max-width: 50%;
  }
}

.services {
  padding: 40px 0;
  background-color: #ecf0f1;
  text-align: center;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 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);
  }
}
@media (min-width: 1440px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__list-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services__item-title {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
.services__item-text {
  font-size: 15px;
  color: #34495e;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}
.services__list-item span {
  display: inline-block;
  background-color: #f39c12;
  color: #ecf0f1;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.features {
  padding: 40px 0;
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features__list-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.features__item-icon {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}
.features__item-title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
.features__item-text {
  font-size: 15px;
  color: #34495e;
  line-height: 1.5;
}

.process {
  padding: 40px 0;
  background-color: #ecf0f1;
  text-align: center;
}
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .process__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process__item-step-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #2c3e50;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .process__item-step-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 60px;
    height: 2px;
    background-color: #e67e22;
    transform: translateY(-50%);
    display: none;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .process__item-step-bg::after {
    display: block;
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  .process__item-step-bg::after {
    width: 100px;
  }
}
.process__item-step-bg:last-child::after {
  display: none;
}
.process__item-step {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #ecf0f1;
}
.process__item-title {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
.process__item-text {
  font-size: 15px;
  color: #34495e;
  line-height: 1.5;
}

.testimonials {
  padding: 40px 0;
  text-align: center;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__list-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.testimonials__item-text {
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonials__item-user {
  text-align: right;
}
.testimonials__item-user-name {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}
.testimonials__item-user-location {
  font-size: 14px;
  color: #e67e22;
}

.contact {
  padding: 40px 0;
  background-color: #ecf0f1;
  text-align: center;
}
.contact__text {
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
  max-width: 600px;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 18px;
  }
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
}
.contact__form-group {
  margin-bottom: 20px;
}
.contact__form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}
.contact__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #34495e;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.contact__form-input:focus {
  border-color: #e67e22;
  outline: none;
}
.contact__form-input.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn--contained {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contact .btn--contained {
    width: auto;
    min-width: 200px;
  }
}
.contact__status-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact__status-message.show {
  opacity: 1;
  transform: translateY(0);
}
.contact__status-message--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact__status-message--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.legal {
  padding: 40px 0;
  background-color: #ecf0f1;
  color: #34495e;
}
@media (min-width: 1024px) {
  .legal {
    padding: 60px 0;
  }
}
.legal h2.title {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .legal h2.title {
    margin-bottom: 40px;
  }
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .legal__section {
    margin-bottom: 60px;
  }
}
.legal__heading {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__heading {
    font-size: 28px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .legal__heading {
    font-size: 32px;
  }
}
.legal__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.legal__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .legal__text {
    font-size: 17px;
  }
}
.legal__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal__list-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.legal__list-item:last-child {
  margin-bottom: 0;
}
.legal strong {
  font-weight: 700;
  color: #2c3e50;
}
.legal a {
  color: #e67e22;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal a:hover {
  color: #bf6516;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 62, 80, 0.95);
  color: #ecf0f1;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 15px 20px;
    gap: 25px;
  }
}
.cookie-banner__text {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    text-align: left;
    font-size: 16px;
  }
}
.cookie-banner__text a {
  color: #e67e22;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #bf6516;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner__actions {
    flex-direction: row;
    width: auto;
  }
}
.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  white-space: nowrap;
}
.cookie-banner .btn--accept {
  background-color: #e67e22;
  color: #ecf0f1;
  border: 2px solid #e67e22;
}
.cookie-banner .btn--accept:hover {
  background-color: #bf6516;
  border-color: #bf6516;
}
.cookie-banner .btn--decline {
  background-color: transparent;
  color: #ecf0f1;
  border: 2px solid #ecf0f1;
}
.cookie-banner .btn--decline:hover {
  background-color: rgba(236, 240, 241, 0.2);
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .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__logo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .footer__logo {
    font-size: 32px;
  }
}
.footer p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(236, 240, 241, 0.8);
}
.footer__title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__menu, .footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item, .footer__list-item {
  margin-bottom: 10px;
}
.footer__menu-item:last-child, .footer__list-item:last-child {
  margin-bottom: 0;
}
.footer__menu-link {
  color: rgba(236, 240, 241, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #f39c12;
}
.footer__list-item {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(236, 240, 241, 0.8);
}
.footer__copy {
  font-size: 14px;
  color: rgba(236, 240, 241, 0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
}
@media (min-width: 1024px) {
  .footer__copy {
    font-size: 15px;
  }
}