/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo h1 {
    color: #2c5aa0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo span {
    color: #666;
    font-size: 14px;
    display: block;
}

.header-contact {
    text-align: right;
}

.phone {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 5px;
}

.address {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.online-booking {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.online-booking:hover {
    background: #e55a2b;
}

/* Navigation */
.main-nav {
    padding: 15px 0;
    position: relative;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
}

.main-nav a:hover {
    color: #2c5aa0;
    background: #f8fafe;
}

.main-nav a.active {
    color: #2c5aa0;
    background: #e8f3ff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c5aa0;
}



/* Breadcrumbs */
.breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: #2c5aa0;
    text-decoration: none;
}

.breadcrumbs span {
    color: #666;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f3ff 100%);
}

.page-title {
    font-size: 42px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
}

/* Benefits */
.benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 20px 25px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    min-width: 200px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.benefit-icon {
    background: #4caf50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e55527 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e55527 0%, #d44519 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

/* Recovery Section */
.recovery-section {
    padding: 60px 0;
    background: white;
}

.recovery-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.recovery-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.recovery-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sleep-treatment {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f3ff 100%);
    padding: 25px 30px;
    border-radius: 20px;
    border-left: 5px solid #2c5aa0;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.sleep-treatment:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
}

.more-link {
    color: #2c5aa0;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
}

/* Symptoms Section */
.symptoms-section {
    padding: 60px 0;
    background: #f8fafe;
}

.symptoms-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
}

.symptoms-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.symptoms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.symptoms-list ul {
    list-style: none;
}

.symptoms-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.symptoms-list li:before {
    content: "•";
    color: #ff6b35;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 12px;
}

.vision-comparison {
    display: flex;
    gap: 30px;
}

.vision-normal,
.vision-cataract {
    text-align: center;
    flex: 1;
}

.vision-normal h4,
.vision-cataract h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.vision-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #ddd;
}

.vision-image.normal {
    background: radial-gradient(circle, #4caf50 30%, #81c784 60%, #c8e6c9 100%);
}

.vision-image.cataract {
    background: radial-gradient(circle, #666 30%, #999 60%, #ccc 100%);
    opacity: 0.7;
}

.vision-normal p,
.vision-cataract p {
    font-size: 14px;
    color: #666;
}

/* Causes Section */
.causes-section {
    padding: 60px 0;
    background: white;
}

.causes-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
}

.causes-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.causes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.causes-column ul {
    list-style: none;
}

.causes-column li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.causes-column li:before {
    content: "▶";
    color: #2c5aa0;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 14px;
}

.causes-footer {
    text-align: center;
    font-size: 18px;
    color: #555;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Treatment Section */
.treatment-section {
    padding: 60px 0;
    background: #f8fafe;
}

.treatment-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 30px;
    text-align: center;
}

.treatment-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.operation-info {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f3ff 100%);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
}

.operation-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.15);
}

.operation-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.operation-info p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8fafe;
}

.map-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.map-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.map-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map-info h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.map-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item strong {
    color: #2c5aa0;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item span {
    color: #555;
    line-height: 1.5;
    font-size: 15px;
}

.map-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.route-button,
.call-button {
    padding: 15px 25px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.route-button {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
}

.route-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 90, 160, 0.3);
}

.call-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e55527 100%);
    color: white;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.yandex-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.yandex-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.yandex-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 25px;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: #b8d0f0;
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4a73c2;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8d0f0;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 20px;
        display: none;
        z-index: 1000;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    

    
    .page-title {
        font-size: 32px;
    }
    
    .benefits {
        flex-direction: column;
    }
    
    .symptoms-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .iol-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-features {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .prices-table {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Map Section Mobile */
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-info {
        padding: 20px;
    }

    .map-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .route-button,
    .call-button {
        padding: 15px;
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }

    /* Legal Section */
    .legal-section {
        padding: 40px 0;
    }

    .legal-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .legal-card {
        padding: 20px;
    }

    .legal-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .legal-table td {
        padding: 8px 0;
    }

    .legal-table td:first-child {
        width: 45%;
        padding-right: 10px;
        font-size: 14px;
    }

    .legal-table td:last-child {
        font-size: 14px;
    }

    .legal-note {
        padding: 20px;
    }

    .legal-note p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .recovery-section h2,
    .symptoms-section h2,
    .causes-section h2,
    .treatment-section h2,
    .iol-section h2,
    .technology-section h2,
    .advantages-section h2,
    .results-section h2,
    .services-section h2,
    .doctors-section h2,
    .prices-section h2,
    .promotions-section h2,
    .contacts-section h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .testimonial blockquote {
        font-size: 18px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .advantage-icon {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }
    
    .service-icon {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }
    
    .doctor-photo {
        width: 100px;
        height: 100px;
    }
    
    .doctor-photo:after {
        font-size: 18px;
    }
    
    .prices-table {
        grid-template-columns: 1fr;
    }
    
    .promotion-price {
        margin-bottom: 15px;
    }
    
    .old-price {
        font-size: 14px;
    }
    
    .new-price {
        font-size: 20px;
    }
    
    .map-section {
        padding: 40px 0;
    }

    .map-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .map-info {
        padding: 15px;
    }

    .map-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .detail-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .detail-item strong {
        font-size: 14px;
    }

    .detail-item span {
        font-size: 13px;
    }

    .route-button,
    .call-button {
        padding: 12px;
        font-size: 14px;
    }
    
    .benefit-item {
        min-width: 100%;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step,
.benefit-item,
.form-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* IOL Section */
.iol-section {
    padding: 60px 0;
    background: white;
}

.iol-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.iol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.iol-card {
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.iol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #e0e0e0;
}

.iol-card.premium {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff8f5 0%, #f8fafe 100%);
}

.iol-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.iol-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.iol-card ul {
    list-style: none;
    text-align: left;
}

.iol-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.iol-card li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background: #f8fafe;
}

.technology-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.technology-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.technology-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.technology-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature h4 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Advantages Section */
.advantages-section {
    padding: 60px 0;
    background: white;
}

.advantages-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #e0e0e0;
}

.advantage-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: bold;
    width: 60px;
    height: 60px;
    background: #fff8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #555;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: #2c5aa0;
    color: white;
}

.results-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #b8d0f0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e8f3ff;
}

.testimonial cite {
    font-size: 16px;
    color: #b8d0f0;
    font-style: normal;
}



/* Services Section */
.services-section {
    padding: 60px 0;
    background: white;
}

.services-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #2c5aa0;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5aa0;
    font-weight: bold;
    width: 60px;
    height: 60px;
    background: #e8f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-card li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Doctors Section */
.doctors-section {
    padding: 60px 0;
    background: #f8fafe;
}

.doctors-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a73c2);
    position: relative;
}

.doctor-photo:after {
    content: "Dr";
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.doctor-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.doctor-position {
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.doctor-experience {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-description {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* Prices Section */
.prices-section {
    padding: 60px 0;
    background: white;
}

.prices-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.prices-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-category {
    background: #f8fafe;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-category h3 {
    background: #2c5aa0;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 20px;
    text-align: center;
}

.price-list {
    padding: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #333;
    font-size: 14px;
    flex: 1;
}

.price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 16px;
}

.price-note {
    background: #fff8f5;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.price-note p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Promotions Section */
.promotions-section {
    padding: 60px 0;
    background: #f8fafe;
}

.promotions-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-card.featured {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.promotion-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.promotion-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.promotion-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: #ff6b35;
    font-size: 24px;
    font-weight: bold;
}

.promotion-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.promotion-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.promotion-card li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.promo-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.promo-button:hover {
    background: #e55a2b;
}

/* Contacts Section */
.contacts-section {
    padding: 60px 0;
    background: white;
}

.contacts-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.map-placeholder {
    background: #f8fafe;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-content h4 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.map-content p {
    color: #666;
    margin-bottom: 20px;
}

.map-button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.map-button:hover {
    background: #1e3d6f;
}

/* Legal Information Section */
.legal-section {
    padding: 60px 0;
    background: white;
}

.legal-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-card {
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.legal-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5aa0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.legal-table td:first-child {
    font-weight: 500;
    color: #333;
    width: 40%;
    padding-right: 15px;
}

.legal-table td:last-child {
    color: #555;
    font-weight: 600;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-note {
    background: linear-gradient(135deg, #e8f3ff 0%, #f0f8ff 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #2c5aa0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.legal-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.15);
}

.legal-note p {
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 