* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(to right, #2c8aca, #1b5d9e);
    color: white;
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.header-contact {
    text-align: right;
}

.header-contact .phone {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-contact .work-hours {
    font-size: 14px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #2c8aca;
}

.btn-primary {
    background: #D90800;
    color: white;
    border: 2px solid #D90800;
}

.btn-primary:hover {
    background: #e55f00;
    border-color: #e55f00;
}

.hero {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f7ff"/></svg>');
    padding: 40px 0;
    text-align: center;
}

.promo-badge {
    background: #D90800;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.hero-title {
    font-size: 36px;
    color: #1b5d9e;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-price {
    font-size: 48px;
    font-weight: 800;
    color: #D90800;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.hero-image img{
    max-width: 100%;
}

.date-badge {
    background: #e9f5ff;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1b5d9e;
}

.features {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1b5d9e;
    font-size: 32px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-item h3 {
    color: #1b5d9e;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item ul {
    list-style: none;
}

.feature-item li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-item li:before {
    content: "✓";
    color: #D90800;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.specialists-slider {
    cursor: pointer;
    max-width: 90%;
    margin: 0 auto;
}

.specialists-slider .slick-list{
    display:flex !important;
    padding:8px 0;
}

.specialists-slider .slick-track{
    display:flex !important;
}

.specialists-slider .specialist-card {
    margin: 0 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialists-slider .specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.specialists-slider .specialist-img {
    height: 250px;
    overflow: hidden;
}

.specialists-slider .specialist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialists-slider .specialist-info {
    padding: 20px;
    text-align: center;
}

.specialists-slider .specialist-name {
    font-weight: 700;
    color: #1b5d9e;
    margin-bottom: 10px;
    font-size: 18px;
}

.specialists-slider .slick-prev,
.specialists-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.specialists-slider .slick-prev {
    left: -45px;
}

.specialists-slider .slick-next {
    right: -45px;
}

.specialists-slider .slick-prev:before,
.specialists-slider .slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: 0.75;
    color: #1b5d9e;
}

.specialists-slider .slick-dots {
    bottom: -40px;
}

.specialists-slider .slick-dots li button:before {
    font-size: 12px;
    color: #1b5d9e;
}

.specialists-slider .slick-dots li.slick-active button:before {
    color: #1b5d9e;
    opacity: 1;
}

@media (max-width: 768px) {
    .specialists-slider .slick-prev {
        left: -25px;
    }

    .specialists-slider .slick-next {
        right: -25px;
    }

    .specialists-slider .specialist-img {
        height: 200px;
    }
}

.specialists {
    padding: 60px 0;
    background: #f9f9f9;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.specialist-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.specialist-img {
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.specialist-info {
    padding: 20px;
}

.specialist-name {
    font-weight: 700;
    color: #1b5d9e;
    margin-bottom: 10px;
}

.form-section {
    padding: 60px 0;
    background: linear-gradient(to right, #2c8aca, #1b5d9e);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    color: #333;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1b5d9e;
    font-size: 24px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.reviews {
    padding: 60px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #1b5d9e;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: #555;
}

.advantages {
    padding: 60px 0;
    background: #f0f7ff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.advantage-icon img{
    width:32px;
    margin-bottom:8px;
}



.advantage-text {
    font-weight: 600;
    color: #1b5d9e;
}

footer {
    background: #1b5d9e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact .phone {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        text-align: center;
        margin: 15px 0;
    }

    .header-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-price {
        font-size: 36px;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
}