:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #333;
    --light-bg: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 800px) {
    nav {
        margin: 0 auto;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        }
}


.logo {
    display: flex;
    align-items: center;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #109BD1;
    letter-spacing: 0.5px;
    background: linear-gradient(120deg, #0a8abb, #109BD1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* General section styles */
section {
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section:first-of-type {
    margin-top: 80px;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* About section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-main h3 {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.about-main p {
    text-align: left;
    margin: 1rem auto;
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.advantage-item {
    text-align: left;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.advantage-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Treatment section */
.section-description {
    text-align: left;
    max-width: 800px;
    margin: -2rem auto 3rem;
    color: var(--text-color);
    opacity: 0.9;
}

.treatment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 64px;
    margin-bottom: 1rem;
}

.treatment-list {
    margin-top: 1rem;
    list-style: none;
    text-align: left;
}

.treatment-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.treatment-list li::before {
    content: 'вЂў';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.service-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: 'вњ“';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.service-item p {
    margin: 1rem 0;
    min-height: 3em;
}

.price {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Contacts section */
.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.license-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}


.contact-info {
    margin: 1.5rem;
}


.contact-info-map {
    margin: 1.5rem;
    text-align: -webkit-center;
}

.check {
    font-size: 20px;
    font-weight: bold;
    color: #009ec1;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
}

.footer-info p {
    margin: 0.5rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-content,
    .contacts-container {
        grid-template-columns: 1fr;
    }
    
    .advantages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 

.contact-box {
    box-shadow: 0 4px 35px rgba(0, 48, 119, 0.05);
    border-radius: 20px;
    background: #fff;
    padding: 2.2em;
    margin-bottom: 2em;
}

.contact-box .section-title, .contact-box h2 {
    margin-bottom: .45em;
}

h2, .section-title {
    text-align: center;
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-box_body {
    display: flex;
    gap: 2em;
    margin-bottom: 1.4em;
}

.contact-box_main {
    flex: 1 0 0;
}

.contact-box_map {
    flex: 340px 0 0;
    overflow: hidden;
}

.contact-table {
    font-weight: 300;
    font-size: .875rem;
    line-height: 1.7;
    width: 100%;
    text-align: left;
}

.contact-table td:first-child {
    font-size: 1.2rem;
    padding-left: 0;
    font-weight: 500;
    width: 30%;
    vertical-align: top;    
}

.contact-table td {
    padding: 1.2em .7em;
    vertical-align: middle;
}

.contact-table td:last-child {
    padding-right: 0;
}


td, th {
    padding: 0;
}
.contact-table td {
    padding: 1.05em .7em;
    vertical-align: top;
    font-size: 1.2rem;
}

.contact-box_info {
    margin-top: 1.4em;
    margin-left: 20px;
    margin-bottom: 1.4em;
    text-align:left;
    font-size: 1.2rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1em;
}

ul:not([class]) {
    margin: 10px;
    list-style-type: disc;
    padding-left: 10px;
    text-align: left
}

ol, ul {
    list-style: none;
    margin-bottom: 0;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-arrow-right:before {
    content: "\f061";
}




.dws-menu *{
 margin: 0;
 padding: 0;
}
.dws-menu {
/* position: relative; бэкраунд по бокам*/
 width: 100%;
/* background: -moz-linear-gradient(top,  rgba(201,201,201,1) 0%, rgba(246,246,246,1) 2%, rgba(196,197,199,1) 98%, rgba(117,117,119,1) 100%);
 background: -webkit-linear-gradient(top,  rgba(201,201,201,1) 0%,rgba(246,246,246,1) 2%,rgba(196,197,199,1) 98%,rgba(117,117,119,1) 100%);
 background: linear-gradient(to bottom,  rgba(201,201,201,1) 0%,rgba(246,246,246,1) 2%,rgba(196,197,199,1) 98%,rgba(117,117,119,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#757577',GradientType=0 ); */
}

.dws-menu ul, .dws-menu ol {
 list-style: none;
}
.dws-menu > ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.dws-menu > ul li {
 position: relative;
}
.dws-menu > ul li:first-child{
    margin-top: 0px;
}
.dws-menu > ul li:last-child{

}
.dws-menu > ul li > a i.fa{
 position: absolute;
 top: 15px;
 left: 12px;
 font-size: 18px;
 color: #454547;
}
.dws-menu > ul li > a:hover i.fa {
 color: #fff;
}

.dws-menu > ul li a{ /* Основное меню */
 display: block;
 background: rgb(255,255,255);
/* background: -moz-linear-gradient(top,  rgba(201,201,201,1) 0%, rgba(246,246,246,1) 2%, rgba(196,197,199,1) 98%, rgba(117,117,119,1) 100%);
 background: -webkit-linear-gradient(top,  rgba(201,201,201,1) 0%,rgba(246,246,246,1) 2%,rgba(196,197,199,1) 98%,rgba(117,117,119,1) 100%);
 background: linear-gradient(to bottom,  rgba(201,201,201,1) 0%,rgba(246,246,246,1) 2%,rgba(196,197,199,1) 98%,rgba(117,117,119,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#757577',GradientType=0 ); */
 padding: 15px 30px 15px 40px;
 font-size: 16px;
 font-weight:bold;
 color: #0099ff;
 text-decoration: none;
 transition: all 0.3s ease;
 background: #fff;
}
.dws-menu li a:hover{
 background: rgb(255,255,255);
/* background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 2%, rgba(255,255,255,1) 98%, rgba(255,255,255,1) 100%);
 background: -webkit-linear-gradient(top,  rgba(224,225,229,1) 0%,rgba(69,69,71,1) 2%,rgba(69,69,71,1) 98%,rgba(224,225,229,1) 100%);
 background: linear-gradient(to bottom,  rgba(224,225,229,1) 0%,rgba(69,69,71,1) 2%,rgba(69,69,71,1) 98%,rgba(224,225,229,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e1e5', endColorstr='#e0e1e5',GradientType=0 ); */
 color: #00cc99;
 box-shadow: 1px 5px 10px -5px black;
 transition: all 0.3s ease;
}

/*подменю*/
.dws-menu li ul{
 position: absolute;
 width: 100%; /* 777 */
 width: -moz-available;          /* WebKit-based browsers will ignore this. */
 width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
 width: fill-available; /* 777 */
 top: 47px;
 left: 0;
 display: none;
}
.dws-menu li > ul li{

}
/* бэкграунд подменю */
.dws-menu li > ul li a{
 padding: 10px;
 text-transform: none;
 background: #fff;
 font-weight:normal; 
}
.dws-menu li > ul li ul{
 position: absolute;
 left: 154px;
 top: -1px;
}
.dws-menu li:hover > ul{
 display: block;
 font-weight: bold;
}

/*==== MEDIA ====*/
.dws-menu [type="checkbox"], .dws-menu label.toggleSubmenu{
 display: none;
}
.dws-menu label.toggleMenu{
 background: #007bff;
 background: -moz-linear-gradient(to bottom, #007bff 0%, #007bff 2%, #70b5ff 98%, #007bff 100%);
 background: -webkit-linear-gradient(to bottom, #007bff 0%, #007bff 2%, #70b5ff 98%, #007bff 100%);
 background: linear-gradient(to bottom, #007bff 0%, #007bff 2%, #70b5ff 98%, #007bff 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#757577',GradientType=0 );
 -webkit-border-radius: 27px;
 display: none;
 padding: 15px 40px;
 font-size: 18px;
 cursor: pointer;
 color: #fff;
 font-weight: bold;

 position: relative;
}

.dws-menu label.toggleMenu .fa{
 position: absolute;
 top: 15px;
 left: 12px;
 font-size: 18px;
}
@media all and (max-width: 800px){
 .dws-menu{
  overflow: hidden;
 }
 .dws-menu ul{
  display: none;
  max-height: 0;
  transition: max-height 0.3s;
 }
 .dws-menu li>ul li ul{
  position: absolute;
  right: auto;
  top: auto;
 }
.dws-menu li > ul li ul li a{padding-left:30px;}
 .dws-menu label.toggleMenu{
  display: block;
 }
 input.toggleMenu:checked + label.toggleMenu{
  background: #007bff;
  font-size:18px;
  color: #fff;
 }
 input.toggleMenu:checked ~ ul, input.toggleSubmenu:checked ~ ul{
  display: block;
  position: relative;
  max-height: 5000px;
  transition: max-height 2s ease-in;
  width: 100%;
  top: 0;
  left: 0;
 }
 .dws-menu label.toggleSubmenu{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
 }
.dws-menu ul li ul li label.toggleSubmenu{
  top: -4px;
}
 input.toggleSubmenu:checked ~ a{
  background: #e0e0e0;
  color: #00cc99;
 }
input.toggleSubmenu:checked ~ a i.fa{
  color: #fff;
 }
 .dws-menu label.toggleSubmenu .fa:before{
  content: "\f0d7";
  color: #454547;
 }
 .dws-menu label.toggleSubmenu .fa{
  position: absolute;
  top: 15px;
  right: 30px;
 }
 .dws-menu input.toggleSubmenu:checked ~ label.toggleSubmenu .fa::before{
  content: "\f0d8";
  color: #ffffff;
 }
}

.h1, h1 {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
    margin-top: 70px !important;
}

.kor {
    font-size: 1.2rem;
    text-align: left;
}