* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  body {
    font-family: 'Raleway', sans-serif;
    color: #000000;
   background-color: #ffffff;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
  }
  
  .nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .burger span {
    width: 25px;
    height: 3px;
    background: #fff;
  }
  
  /* Hero div */
  .hero {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to right, #c1b6b6 50%, #e9e7e7 50%);
  }
  
  .hero-left {
    width: 50%;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
  }
  
  .hero-left .greeting {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .hero-left h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .hero-left .profession {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .contact-btn {
    padding: 10px 20px;
    background: #ffffff20;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    width: fit-content;
    transition: background 0.3s ease;
  }
  
  .contact-btn:hover {
    background: #ffffff40;
  }
  
  .hero-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      display: none;
      flex-direction: column;
      background: #262626;
      position: absolute;
      top: 60px;
      right: 0px;
      width: 100%;
      padding: 20px;
    }
  
    .nav.nav--active {
      display: flex;
      flex-direction: column;
    }
    .nav ul {
      display: flex
  ;
  flex-direction: column;
      gap: 30px;
      list-style: none;
  }
    .burger {
      display: flex;
    }
  
    .hero {
      flex-direction: column;
    }
  
    .hero-left,
    .hero-right {
      width: 100%;
      text-align: center;
      padding: 40px;
    }
  
    .hero-right img {
      width: 60%;
    }
  }
  .practice {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    color: #262626;
  }
  
  .practice__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .practice__subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
  }
  
  .practice__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .practice__description {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #1a1a1a;
  }
  
  .practice__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .practice__item {
    max-width: 250px;
  }
  
  .practice__icon {
    width: 80px;
    height: 80px;
    background-color: #c9c1c1;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon {
    font-size: 36px;
    color: white;
  }
  
  /* Конкретные иконки через Font Awesome (или свой сет) */
  .icon--family::before {
    content: "\f500"; /* Пример FA - child */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .icon--business::before {
    content: "\f201"; /* chart-line */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .icon--drug::before {
    content: "\f48e"; /* prescription-bottle-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .icon--criminal::before {
    content: "\f500"; /* balance-scale - можно заменить */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .practice__name {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .practice__text {
    font-size: 14px;
    color: #777;
  }
  .facts {
 /* замените на путь к картинке */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
  
  }
  
  .facts__overlay {
    background: rgba(0, 0, 0, 0.6); /* затемнение */
    padding: 80px 0;
  }
  
  .facts__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .facts__intro {
    margin-bottom: 50px;
  }
  
  .facts__subtitle {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .facts__title {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
  }
  
  .facts__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
  }
  
  .facts__item {
    flex: 1 1 200px;
    max-width: 220px;
  }
  
  .facts__number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px;
  }
  
  .facts__label {
    font-size: 14px;
    color: #ddd;
  }
  .assure {
    background-color: #fff;
    padding: 80px 20px;
  }
  
  .assure__container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .assure__content {
    flex: 1 1 55%;
    padding-right: 40px;
  }
  
  .assure__subtitle {
    text-transform: uppercase;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .assure__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
  }
  
  .assure__features {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .assure__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .assure__icon {
    background-color: #c2b8b8;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  
  .assure__feature-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .assure__feature-desc {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
  }
  
  .assure__image {
    flex: 1 1 45%;
  }
  
  .assure__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  .testimonial {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
  }
  .testimonial__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #a9a9a9;
    margin-bottom: 10px;
  }
  .testimonial__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .testimonial__desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #1a1a1a;
    font-size: 16px;
  }
  .testimonial__slider {
    padding: 20px 0;
  }
  .testimonial__slide {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  .testimonial__text {
    font-size: 15px;
    color: #262626;
    margin-bottom: 15px;
  }
  .testimonial__name {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
  }
  .testimonial__role {
    font-size: 14px;
    color: #1a1a1a;
  }
  .swiper-button-next, .swiper-button-prev

 {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #323232;
}
.about {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
  }
  
  .about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .about__media {
    position: relative;
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .about__image {
    width: 100%;
    border-radius: 4px;
    display: block;
  }
  
  .about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(150, 130, 130, 0.7);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about__play-icon {
    color: #fff;
    font-size: 28px;
  }
  
  .about__content {
    flex: 1 1 400px;
    max-width: 600px;
  }
  
  .about__subtitle {
    font-size: 13px;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .about__title {
    font-size: 32px;
    margin: 10px 0 20px;
    color: #222;
  }
  
  .about__text {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  
  .about__socials {
    margin-top: 20px;
  }
  
  .about__social {
    font-size: 16px;
    color: #1a1a1a;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .about__social:hover {
    color: #000;
  }
  .case-study {
    text-align: center;
    padding: 90px 20px;
  }
  
  .case-study__subtitle {
    text-transform: uppercase;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
  }
  
  .case-study__title {
    font-size: 36px;
    margin: 10px 0;
    color: #262626;
  }
  
  .case-study__desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #777;
    font-size: 16px;
  }
  
  .case-study__grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .case-study__item {
    max-width: 320px;
    text-align: left;
  }
  
  .case-study__image {
    width: 100%;
    object-fit: cover;
    height: 300px;
    display: block;
    border-radius: 4px;
  }
  
  .case-study__meta {
    background: #eee;
    padding: 10px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-top: -5px;
  }
  
  .case-study__text {
    font-size: 18px;
    margin-top: 10px;
    color: #262626;
  }
  .appointment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .appointment__form, .appointment__content

   {
      flex: 1 1 45%;
      display: flex
  ;
      flex-direction: column;
  }
  
  .appointment__form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .appointment__input,
  .appointment__textarea,
  .appointment__select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
    border-radius: 3px;
    background: #fff;
    transition: border-color 0.3s;
  }
  
  .appointment__input:focus,
  .appointment__textarea:focus,
  .appointment__select:focus {
    border-color: #888;
    outline: none;
  }
  
  .appointment__textarea {
    height: 140px;
    resize: vertical;
  }
  
  .appointment__row {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }
  
  .appointment__button {
    background: #bfb6b6;
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
    width: 100%;
  }
  
  .appointment__button:hover {
    background: #9e9393;
  }
  
  .appointment__content .appointment__subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9c9c9c;
    margin-bottom: 10px;
  }
  
  .appointment__content .appointment__title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
  }
  
  .appointment__content p {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .appointment {
      flex-direction: column;
    }
  
    .appointment__form,
    .appointment__content {
      flex: 1 1 100%;
    }
  
    .appointment__row {
      flex: 1 1 100%;
    }
  }
  .footer {
    background-color: #111;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer__column {
    flex: 1 1 200px;
  }
  
  .footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .footer__text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .footer__socials a {
    color: #fff;
    background: #222;
    display: inline-block;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
  }
  
  .footer__socials a:hover {
    background: #444;
  }
  
  .footer__links,
  .footer__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__links li,
  .footer__contacts li {
    margin-bottom: 12px;
  }
  
  .footer__links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer__links a:hover {
    color: #fff;
  }
  
  .footer__contacts i {
    margin-right: 10px;
    color: #fff;
  }
  
  .footer__bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #262626;
    padding-top: 20px;
    font-size: 14px;
    color: #1a1a1a;
  }
  
  .footer__bottom i {
    color: red;
  }
  .about-us {
    padding: 90px 20px;
  }
  
  .about-us__container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }
  
  .about-us__image-wrapper {
    flex: 1 1 300px;
  }
  
  .about-us__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .about-us__content {
    flex: 1 1 500px;
  }
  
  .about-us__intro {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 10px;
  }
  
  .about-us__name {
    font-size: 32px;
    margin: 0;
  }
  
  .about-us__title {
    color: #a8a8a8;
    font-size: 18px;
    margin: 10px 0 20px;
  }
  
  .about__text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  
  .about-us__contact {
    margin: 5px 0;
    font-size: 15px;
    color: #000;
  }
  
  .about-us__contact a {
    color: #1a1a1a;
    text-decoration: none;
  }
  
  .about-us__socials {
    margin-top: 15px;
  }
  
  .about-us__social {
    font-size: 16px;
    margin-right: 15px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .about-us__social:hover {
    color: #222;
  }
  
  .about-us__objective {
    margin-top: 40px;
  }
  
  .about-us__objective-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .about-us__objective-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a;
  }
  .services-us {
    padding: 90px 20px;
    background-color: #fff;
  }
  
  .services-us__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .services-us__item {
    text-align: left;
  }
  
  .services-us__image {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
  }
  
  .services-us__title {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #111;
  }
  
  .services-us__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
  }
  .contact {
    padding: 90px 20px;
    background-color: #fff;
  }
  
  .contact__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .contact__info-box {
    background-color: #f4f4f4;
    padding: 15px;
    font-size: 14px;
    color: #333;
  }
  
  .contact__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .contact__form {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact__input,
  .contact__textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    resize: none;
  }
  
  .contact__textarea {
    height: 150px;
  }
  
  .contact__btn {
    background-color: #c3bcb9;
    color: #fff;
    padding: 12px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s ease;
  }
  
  .contact__btn:hover {
    background-color: #a79d9a;
  }
  
  .contact__map {
    flex: 1 1 48%;
    background-color: #edf0f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    padding: 20px;
    text-align: center;
  }
  
  .contact__map-error p {
    color: #555;
    font-size: 14px;
    margin: 5px 0;
  }
  .post-detail {
    padding: 90px 20px;
  
    background-color: #fff;
    color: #333;
  }
  
  .post-detail__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .post-detail__meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .post-detail__image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  .post-detail__content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .post-detail__content blockquote {
    border-left: 4px solid #332319;
    padding-left: 20px;
    font-style: italic;
    margin: 20px 0;
    color: #555;
  }
  
  .post-detail__share {
    margin-top: 30px;
    font-size: 16px;
  }
  
  .post-detail__share span {
    margin-right: 10px;
    font-weight: bold;
  }
  
  .post-detail__share a {
    margin-right: 10px;
    color: #31221a;
    text-decoration: none;
    font-size: 18px;
  }
  
  .post-detail__share a:hover {
    color: #472c21;
  }
  .post-detail__container{
    max-width: 900px;
    margin: 0 auto;
  }
  .faq {
    padding: 90px 20px;
   
  }
  
  .faq__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faq__item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }
  
  .faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
  }
  
  .faq__question:hover {
    color: #2b2318;
  }
  
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 16px;
    padding-left: 10px;
  }
  
  .faq__item.active .faq__answer {
    max-height: 200px;
    padding-top: 10px;
  }
  .faq__container{
    max-width: 900px;
    margin: 0 auto;
  }
  .testimonial-us {
    padding: 90px 20px;
   
  }
  
  .testimonial-us__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .testimonial-us__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .testimonial-us__item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .testimonial-us__item:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-us__text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
  }
  
  .testimonial-us__author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial-us__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-us__author h4 {
    margin: 0;
    font-size: 16px;
  }
  
  .testimonial-us__author span {
    font-size: 14px;
    color: #777;
  }
  .testimonial-us__container{
    max-width: 1000px;
    margin: 0 auto;
  }
  .terms{
    padding: 90px 15px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .terms__container{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .terms ul{
display: flex;
flex-direction: column;
gap: 10px;
padding-left: 20px;
  }
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1d1d1d;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideIn 0.5s ease-out;
    font-family: Arial, sans-serif;
  }
  
  .cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cookie-banner__text {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .cookie-banner__link {
    color: #00bfff;
    text-decoration: underline;
    font-weight: 500;
  }
  
  .cookie-banner__button {
    align-self: flex-start;
    background-color: #00bfff;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cookie-banner__button:hover {
    background-color: #0099cc;
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0%);
      opacity: 1;
    }
  }
  @media screen and (max-width: 768px) {
    .appointment {
        flex-direction: column;
        padding: 90px 15px;
        gap: 40px;
    }
}
  @media (min-width: 600px) {
    .cookie-banner__content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

  }
