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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafe;
}

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

.full-width {
    width: 100%;
    padding: 0;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #87ceeb;
}

.header-phone {
    font-size: 18px;
    font-weight: 600;
    color: #87ceeb;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #b8dff0 0%, #87ceeb 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.hero-stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Filters */
.filters {
    background: white;
    padding: 40px 0;
    margin: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item label {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    margin-bottom: 5px;
}

.filter-item select, .filter-item input {
    padding: 14px 16px;
    border: 2px solid #e8f2ff;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
    background: #fafcff;
}

.filter-item select:focus, .filter-item input:focus {
    outline: none;
    border-color: #87ceeb;
    background: white;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

/* Clinics Grid */
.clinics-section {
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #87ceeb;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.clinics-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.clinic-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #f8bbd9;
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 1;
    transform: translateY(0);
}

.clinic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.clinic-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clinic-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.clinic-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #87ceeb;
    margin-bottom: 8px;
}

.clinic-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8bbd9;
    color: #8b4a72;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.clinic-address {
    color: #666;
    margin-bottom: 8px;
    font-size: 1rem;
}

.clinic-metro {
    color: #87ceeb;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.clinic-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 15px;
}

.clinic-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: #e8f7ff;
    color: #4a90a4;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.clinic-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #87ceeb, #b8dff0);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #87ceeb;
    padding: 12px 24px;
    border: 2px solid #87ceeb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #87ceeb;
    color: white;
}

/* Service Description */
.service-info {
    background: white;
    padding: 60px 0;
    margin: 0;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-info h2 {
    font-size: 2.2rem;
    color: #87ceeb;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #87ceeb;
    margin: 35px 0 20px;
    font-weight: 600;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.service-info strong {
    color: #87ceeb;
    font-weight: 600;
}

.service-steps {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #87ceeb;
}

.service-steps h3 {
    margin-top: 0;
}

.service-steps ol {
    padding-left: 20px;
}

.service-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.doctors-list {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.doctors-list h3 {
    margin-top: 0;
    color: #87ceeb;
}

.doctors-list ul {
    list-style: none;
    padding-left: 0;
}

.doctors-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.doctors-list li:before {
    content: "👨‍⚕️";
    position: absolute;
    left: 0;
    top: 10px;
}

.contraindications {
    background: #fdf2f8;
    border: 1px solid #f8bbd9;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.contraindications h3 {
    color: #c53030;
    margin-top: 0;
}

.contraindications ul {
    list-style: none;
    padding-left: 0;
}

.contraindications li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.contraindications li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 8px;
}

.price-info {
    background: #fdf2f8;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #f8bbd9;
}

.price-info h3 {
    margin-top: 0;
    color: #87ceeb;
}

.price-range {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b9d;
    margin: 15px 0;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 600;
    color: #87ceeb;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.synonyms {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 0.95rem;
    color: #666;
}

.synonyms strong {
    color: #87ceeb;
}

.update-date {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin: 30px 0;
}

/* Warning */
.wl8m8ex {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.akffcjt {
    flex-shrink: 0;
}

.sdsIcon_221ffad4 {
    display: inline-block;
    width: var(--igwdj7z-0);
    height: var(--igwdj7z-0);
    background-image: var(--igwdj7z-1);
    background-size: contain;
    background-repeat: no-repeat;
}

.cc02xln {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tapwpx0 {
    font-weight: 600;
    color: #856404;
}

.tsmm3qy {
    color: #856404;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #87ceeb, #b8dff0);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clinic-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        text-align: center;
    }
    
    .clinic-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .clinic-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .service-content {
        padding: 0 10px;
    }
    
    .service-info h2 {
        font-size: 1.8rem;
    }
    
    .service-info h3 {
        font-size: 1.3rem;
    }
    
    .filters {
        padding: 30px 0;
    }
    
    .clinics-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .clinic-name {
        font-size: 1.2rem;
    }
    
    .clinic-price {
        font-size: 1.3rem;
    }
    
    .filter-item select, .filter-item input {
        padding: 12px;
        font-size: 14px;
    }
    
    .service-steps, .doctors-list, .contraindications, .price-info {
        padding: 20px;
        margin: 20px 0;
    }
}