@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #a10800;
  --color-text: #333;
  --color-dark: #000;
  --color-light: #fff;
  --color-gray: #f5f5f5;
  --font-family: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.btn--red {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn--red:hover {
  background-color: #6e0500;
}

.btn--white {
  background-color: var(--color-light);
  color: var(--color-dark);
  border: 1px solid #ddd;
}

.btn--white:hover {
  background-color: #f5f5f5;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-popup__content h2 {
  margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
  .cookie-popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
}

.header {
  background-color: #000;
  color: var(--color-light);
  padding: 15px 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  height: 30px;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background-color: #000;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .nav.active {
    right: 0;
  }
}

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

@media (max-width: 768px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}

.nav__link {
  position: relative;
}

.nav__link:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-light);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

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

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-light);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.hero {
  padding: 60px 0;
  text-align: center;
}

.hero__title {
  font-size: 32px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 24px;
  }
}

.hero__text {
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

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

.hero__form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-family: var(--font-family);
}

.hero__form button {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .hero__form button {
    grid-column: span 1;
  }
}

.about {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.about__content .section-title {
  text-align: left;
}

.pricing {
  padding: 60px 0;
  background-image: url(./assets/bg.png);
  background-size: cover;
}

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

}

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

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

.pricing-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.pricing-card__image {
  height: 150px;
  overflow: hidden;
}

.pricing-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pricing-card__title {
  padding: 15px;
  text-align: center;
  font-size: 24px;
  background-color: #f5f5f5;
}

.pricing-card__price {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.pricing-card__features {
  padding: 20px;
}

.pricing-card__features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.pricing-card__features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.pricing-card__features li:last-child {
  margin-bottom: 0;
}

.experts {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.experts__intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

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

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

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

.expert-card {
  background-color: var(--color-light);
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.expert-card__image {
  height: 250px;
  overflow: hidden;
}

.expert-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.expert-card__name {
  padding: 15px 15px 5px;
  font-size: 20px;
}

.expert-card__description {
  padding: 0 15px 15px;
  font-size: 14px;
}

.services {
  padding: 60px 0;
  background-image: url(./assets/bg.png);
    background-size: cover;
    color: #fff;
}

.services__intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.services__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.service-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-item__icon img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-item__title {
  font-size: 18px;
  margin-bottom: 5px;
}

.service-item__description {
  font-size: 14px;
  color: #666;
}

.footer {
  padding: 60px 0 30px;
  background-color: #000;
  color: var(--color-light);
}

.footer .section-title {
  color: var(--color-light);
}

.footer__contact {
  text-align: center;
  margin-bottom: 40px;
}

.footer__contact p {
  margin-bottom: 10px;
}

.footer__contact a {
  color: var(--color-light);
  text-decoration: underline;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer__links a {
  font-size: 14px;
}

.footer__links a:hover {
  text-decoration: underline;
}

.privacies{
  .container{
    padding-top: 50px;
    padding-bottom: 50px;
    h1{
      margin-bottom: 32px;
      font-size: 34px;
      text-transform: uppercase;
    }
  }
}
.success{
  .container{
    min-height: 70vh;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    h1{
      font-size: 32px;
      text-transform: uppercase;
    }
  }
}