
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
a{
  text-decoration: none;
  color: inherit;
}
  body {
    font-family: 'Poppins', sans-serif;
  }
.header {
    font-family: 'Segoe UI', sans-serif;
  }
  .header__top {
    display: flex;
    justify-content: space-between;
    background: #075c68;
    padding: 10px 30px;
    color: white;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .header__contact span {
    margin-right: 20px;
  }
  .header__socials a {
    color: white;
    margin-left: 15px;
  }
  .header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: white;
    position: relative;
  }
  .header__logo {
    font-size: 24px;
    font-weight: bold;
  }
  .header__nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }
  .header__nav a {
    color: black;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
  }
  .header__nav a.active::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #029fbb;
    margin: 5px auto 0;
  }
  .header__appointment {
    padding: 10px 20px;
    border: 2px solid #029fbb;
    border-radius: 5px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    font-weight: 600;
  }
  .header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: black;
  }
  
  @media (max-width: 768px) {
    .header__nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      padding: 20px;
    }
    .header__nav.active {
      display: block;
      z-index: 3;
    }
    .header__nav ul {
      flex-direction: column;
      gap: 15px;
    }
    .header__burger {
      display: flex;
    }
  }
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px;
    background-color: #f6f9f9;
    flex-wrap: wrap;
  }
  .hero__content {
    flex: 1 1 50%;
    max-width: 600px;
  }
  .hero__subtitle {
    color: #00a2af;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .hero__title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
  }
  .hero__btn {
    display: inline-block;
    background-color: #00a2af;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    text-decoration: none;
  }
  .container{
    max-width: 1140px;
margin: 0 auto;
padding: 0 15px;
  }
   .hero   .container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
   }
  .hero__btn:hover {
    background-color: #008c99;
  }
  .hero__image {
    flex: 1 1 45%;
    text-align: right;
  }
  .hero__image img {
    max-width: 100%;
    height: 500px;
    width: auto;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .hero {
      flex-direction: column-reverse;
      text-align: center;
      padding: 40px 20px;
    }
    .hero__image {
      text-align: center;
 
      margin-bottom: 30px;
    }
  }
  .consultation {
    padding: 80px 60px;
    background: #f8fcfc;
    font-family: 'Segoe UI', sans-serif;
  }
  .consultation__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  .consultation__form {
    flex: 1 1 300px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
  }
  .consultation__form h4 {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }
  .consultation__form h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
  }
  .consultation__form form input,
  .consultation__form form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 4px;
  }
  .consultation__form form button {
    width: 100%;
    padding: 14px;
    background: #00a2af;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .consultation__form form button:hover {
    background: #008c99;
  }
  
  .consultation__content {
    flex: 1 1 550px;
  }
  .consultation__content .subtitle {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #888;
  }
  .consultation__content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .consultation__content h2 span {
    color: #00a2af;
  }
  .consultation__content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .consultation__video {
    position: relative;
    width: 100%;
    max-width: 400px;
  }
  .consultation__video img {
    width: 100%;
    border-radius: 6px;
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00a2af;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .offer {
    padding: 80px 30px;
    text-align: center;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  .offer__subtitle {
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
  }
  .offer__title {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 40px;
  }
  .offer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  .offer__item {
    padding: 20px;
  }
  .offer__item i {
    font-size: 40px;
    color: #00c4cc;
    margin-bottom: 20px;
  }
  .offer__item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .offer__item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  .services {
    padding: 80px 30px;
    color: #fff;
    position: relative;
  }
  .services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  .services * {
    position: relative;
    z-index: 1;
  }
  .services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .services__subtitle {
    color: #00c4cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  .services__title {
    font-size: 36px;
    font-weight: bold;
  }
  .services__btn {
    border: 2px solid #00c4cc;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
  }
  .services__btn:hover {
    background: #00c4cc;
    color: #fff;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .services__item {
    background: #fff;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
  }
  .services__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .services__item i {
    font-size: 36px;
    color: #00c4cc;
    flex-shrink: 0;
    margin-top: 5px;
  }
  .services__item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
  }
  .services__item p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }
  .team {
    text-align: center;
    padding: 80px 30px;
    font-family: 'Segoe UI', sans-serif;
  }
  .team__subtitle {
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .team__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  .team__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .team__member {
    max-width: 250px;
  }
  .team__img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f4f4f4;
    transition: 0.3s ease;
  }
  .team__member.active .team__img {
    border-color: #5ed9dd;
  }
  .team__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team__member h3 {
    margin: 10px 0 5px;
    font-weight: 700;
  }
  .team__member p {
    color: #00acc1;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .team__socials a {
    margin: 0 5px;
    color: #444;
    font-size: 16px;
    transition: 0.3s;
  }
  .team__socials a:hover {
    color: #00acc1;
  }
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 40px;
  }
  
  .gallery__grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .gallery__grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery__grid a:hover img {
    transform: scale(1.05);
  }
  .news {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
  }
  
  .news__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .news__subtitle {
    text-transform: uppercase;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
  }
  
  .news__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
  }
  
  .news__button {
    border: 2px solid #00acc1;
    color: #00acc1;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .news__button:hover {
    background-color: #00acc1;
    color: #fff;
  }
  
  .news__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }
  
  .news__item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  .news__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .news__item-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .news__author {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
  }
  
  .news__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .news__dot {
    margin: 0 8px;
  }
  .footer {
    background-color: #0e1e25;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
  }
  
  .footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
  
  .footer__logo-block {
    max-width: 400px;
  }
  
  .footer__logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .footer__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .footer__input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
  }
  
  .footer__button {
    background-color: #00acc1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: bold;
  }
  
  .footer__socials {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .footer__social {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
  }
  
  .footer__social:hover {
    background: #00acc1;
  }
  
  .footer__middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .footer__column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
  }
  
  .footer__title {
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .footer__list,
  .footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 6px 0;
    transition: 0.3s;
  }
  
  .footer__link:hover {
    color: #fff;
  }
  
  .footer__contact li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer__map {
    width: 100%;
    border: none;
    border-radius: 10px;
  }
  
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
  }
  
  .footer__copy {
    margin: 0;
  }
  
  .footer__heart {
    color: #00acc1;
  }
  
  .footer__policies {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .footer__dot {
    color: #fff;
  }
  .about-us {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .about-us__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-us__media {
    flex: 1 1 45%;
    position: relative;
    padding: 20px;
  }
  
  .about-us__video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .about-us__image {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  
  .about-us__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #079bb5;
    color: #fff;
    font-size: 20px;
    padding: 18px;
    border-radius: 50%;
    text-decoration: none;
  }
  
  .about-us__content {
    flex: 1 1 45%;
    padding: 20px;
  }
  
  .about-us__subtitle {
    color: #888;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .about-us__title {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 700;
  }
  
  .about-us__text {
    margin-bottom: 20px;
    color: #555;
  }
  
  .about-us__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .about-us__list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
  }
  
  .about-us__list i {
    color: #079bb5;
    margin-right: 10px;
  }
  
  .btn {
    padding: 12px 28px;
    background: #079bb5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #066e83;
  }
  .news__item > img{
    height: 250px;
    object-fit: cover;
    width: 100%;
  }
  .article {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .article__cover {
    position: relative;
    overflow: hidden;
  }
  
  .article__image {
    width: 100%;
    object-fit: cover;
    height: 400px;
    display: block;
    border-radius: 8px;
  }
  
  .article__title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 6px;
  }
  
  .article__title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
  }
  
  .article__meta {
    font-size: 14px;
  }
  
  .article__content {
    margin-top: 40px;
  }
  
  .article__step {
    margin-bottom: 30px;
  }
  
  .article__step-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
  }
  
  .article__text {
    font-size: 16px;
    color: #444;
  }
  
  .article__gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
  }
  
  .article__img {
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 6px;
    max-width: 100%;
  }
  
  .article__tags {
    margin-top: 30px;
  }
  
  .article__tag {
    display: inline-block;
    background-color: #f1f1f1;
    padding: 6px 14px;
    margin-right: 10px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #444;
  }
  
  .article__tag:hover {
    background-color: #079bb5;
    color: #fff;
  }
  .testimonial {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .testimonial__container {
    max-width: 900px;
    margin: auto;
  }
  
  .testimonial__title {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .testimonial__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .testimonial__item {
    background: #fff;
    border-left: 4px solid #00bcd4;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial__text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .testimonial__author {
    font-weight: 600;
    color: #444;
  }
  .faq {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .faq__container {
    max-width: 800px;
    margin: auto;
  }
  
  .faq__title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .faq__item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .faq__question {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: 15px 0;
    cursor: pointer;
    color: #333;
  }
  
  .faq__answer {
    display: none;
    padding-bottom: 15px;
    color: #555;
    font-size: 16px;
  }
  
  .faq__item.active .faq__answer {
    display: block;
  }
  .terms{
    padding: 90px 0;
  }
  .terms .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
   .terms ul{
    padding-left: 15px;
   }
   .terms ul li{
    margin-bottom: 10px;
   }
   .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    max-width: 600px;
    margin: auto;
  }
  
  .cookie-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .cookie-banner__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    flex: 1 1 auto;
  }
  
  .cookie-banner__link {
    color: #00bcd4;
    text-decoration: underline;
  }
  
  .cookie-banner__button {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .cookie-banner__button:hover {
    background: #009eb3;
  }
  .contact-us {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .contact-us__info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .contact-us__item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
  }
  
  .contact-us__icon {
    background: #e6f7fb;
    padding: 15px;
    border-radius: 50%;
    color: #00aabe;
    font-size: 20px;
  }
  
  .contact-us__text {
    text-align: left;
  }
  
  .contact__label {
    font-weight: 700;
    margin: 0 0 5px;
  }
  
  .contact-us__desc {
    margin: 0;
    color: #666;
    font-size: 14px;
  }
  
  .contact-us__main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .contact-us__image {
    flex: 1 1 45%;
    min-width: 280px;
  }
  
  .contact-us__image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .contact-us__form {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-us__form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .contact-us__input,
  .contact-us__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .contact-us__textarea {
    height: 100px;
    resize: none;
  }
  
  .contact-us__button {
    background-color: #00aabe;
    color: white;
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .contact-us__button:hover {
    background-color: #0092a5;
  }
  @media screen and (max-width: 768px) {
    .header__top {
        display: flex
    ;
        justify-content: space-between;
        background: #075c68;
        padding: 10px 15px;
        color: white;
        font-size: 14px;
        flex-wrap: wrap;
    }
    .hero .container {
        display: flex
    ;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        flex-direction: column;
    }
    .consultation {
        padding: 80px 10px;
        background: #f8fcfc;
        font-family: 'Segoe UI', sans-serif;
    }
    .footer__policies {
        display: flex
    ;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    .gallery__grid {
        display: grid
    ;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 15px;
        padding: 0px;
    }
    .header__contact {
        display: flex
    ;
        flex-wrap: wrap;
    }
  }