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

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

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

a {
    text-decoration: none;
    color: #4a90e2;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
}

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

.contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    font-weight: bold;
    color: #333;
}

.schedule {
    color: #777;
    font-size: 0.9rem;
}

.whatsapp {
    color: #25D366;
    font-weight: 500;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a90e2;
}

.social-search {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link.vk {
    background-color: #4C75A3;
}

.social-link.telegram {
    background-color: #0088cc;
}

.search form {
    display: flex;
    align-items: center;
}

.search input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

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

.nav-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-item a {
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: #4a90e2;
}

.nav-item.active a {
    color: #e74c3c;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 10px 0;
    font-size: 0.85rem;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
    color: #777;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: 0;
    color: #ccc;
}

.breadcrumbs a {
    color: #777;
}

.breadcrumbs a:hover {
    color: #4a90e2;
}

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-description p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature span:last-child {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-phone {
    text-align: left;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: #7a8491;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4a90e2;
    text-decoration: none;
}

.phone-number:hover {
    color: #357abd;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e8f4fd;
}

.card-header {
    margin-bottom: 20px;
}

.card-icon {
    margin-bottom: 15px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-text {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0;
}

.card-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: #f8fbff;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a90e2;
}

.stat-label {
    font-size: 0.9rem;
    color: #7a8491;
}

.side-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-btn {
    background: white;
    border: 2px solid #e8f4fd;
    color: #4a90e2;
    padding: 20px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.side-btn:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.btn-icon {
    font-size: 0.9rem;
    font-weight: bold;
    background: #e8f4fd;
    color: #4a90e2;
    padding: 8px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.side-btn:hover .btn-icon {
    background: white;
    color: #4a90e2;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(1);
}

.benefit-text h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 0.9rem;
    color: #7a8491;
    margin: 0;
}

.hero-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hero-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-info > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    padding: 20px;
    background: #f8fbff;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.highlight-item strong {
    color: #4a90e2;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #f1c40f;
    color: #333;
}

.btn-primary:hover {
    background-color: #e2b607;
}

.btn-secondary {
    background-color: #4a90e2;
    color: white;
}

.btn-secondary:hover {
    background-color: #3a7bc2;
}

/* Prevention Section */
.prevention {
    padding: 30px 0;
    border-bottom: 1px solid #e1e1e1;
}

.prevention h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.prevention-content p {
    margin-bottom: 15px;
}

.prevention-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.prevention-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.prevention-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

/* Treatment Section */
.treatment {
    padding: 30px 0;
    border-bottom: 1px solid #e1e1e1;
}

.treatment h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.treatment-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.treatment-image {
    flex: 1;
}

.treatment-text {
    flex: 1;
}

/* Contact Us Section */
.contact-us {
    padding: 30px 0;
    border-bottom: 1px solid #e1e1e1;
}

.contact-us h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-us-content {
    display: flex;
    gap: 30px;
}

.map-container {
    flex: 1;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 300px;
    z-index: 10;
}

.map-info h3 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.map-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    flex: 2;
}

.contact-benefits {
    margin: 20px 0;
}

.contact-benefits li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.contact-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

.contact-details {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.contact-details h4 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Related Section */
.related {
    padding: 30px 0;
    border-bottom: 1px solid #e1e1e1;
}

.related h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.related-items {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.related-item {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.related-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4a90e2;
    text-align: center;
    padding: 30px 0;
    background: white;
    border-radius: 8px 8px 0 0;
    letter-spacing: 1px;
}

.related-item h3 {
    padding: 15px;
    font-size: 1rem;
    color: #333;
}

.related-item p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: #777;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Branches Section */
.branches {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.branches h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

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

.branch-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.branch-card h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.branch-address, .branch-phone {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
}

.page-link.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 40px 0 20px;
    color: #555;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contacts {
    font-size: 0.9rem;
}

.footer-phone {
    font-weight: bold;
    margin-top: 5px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a90e2;
}

.footer-buttons .btn-outline {
    border: 2px solid #4a90e2;
    background-color: transparent;
    color: #4a90e2;
}

.footer-middle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.footer-info {
    text-align: center;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.cert-placeholder {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a90e2;
    font-weight: 600;
    text-align: center;
    border: 2px solid #e8f4fd;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-nav-column h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #333;
}

.footer-nav-column ul li {
    margin-bottom: 8px;
}

.footer-nav-column a {
    color: #555;
    font-size: 0.85rem;
}

.footer-nav-column a:hover {
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #e8f4fd;
    padding-top: 30px;
}

.footer-legal-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.legal-section h5 {
    color: #4a90e2;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal-section p {
    font-size: 0.85rem;
    color: #7a8491;
    line-height: 1.5;
    margin-bottom: 5px;
}

.copyright-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.copyright {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #7a8491;
    font-style: italic;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background-color: #25D366;
}

.callback-btn {
    background-color: #4a90e2;
}

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

.doctors h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.doctor-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 25px;
}

.doctor-photo {
    flex-shrink: 0;
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border: 4px solid #357abd;
}

.doctor-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.doctor-position {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-experience {
    color: #777;
    margin-bottom: 20px;
}

.doctor-specialization h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.doctor-specialization ul {
    list-style: none;
}

.doctor-specialization li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
}

.doctor-specialization li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

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

.prices h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.price-category {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e8f4fd;
}

.price-category h3 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 25px;
    text-align: center;
}

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

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

.price-item.highlight {
    background: #4a90e2;
    color: white;
    margin: 10px -15px;
    padding: 15px;
    border-radius: 8px;
    border-bottom: none;
}

.service-name {
    flex: 1;
}

.service-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4a90e2;
}

.price-item.highlight .service-price {
    color: white;
}

.price-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.price-note p {
    margin-bottom: 10px;
    color: #856404;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #f9f9f9;
}

.reviews h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-author h4 {
    color: #333;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.review-date {
    color: #777;
    font-size: 0.9rem;
}

.reviews-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.reviews-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

.about h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

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

.feature-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #4a90e2;
    border-radius: 15px;
    color: white;
}

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

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

.licenses {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.licenses h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.licenses > p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.license-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
}

.license-info p {
    margin-bottom: 8px;
    color: #555;
}

/* Catalog Section */
.catalog {
    padding: 60px 0;
    background: #f9f9f9;
}

.catalog h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.catalog-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.catalog-category h3 {
    font-size: 1.4rem;
    color: #4a90e2;
    margin-bottom: 25px;
    text-align: center;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.catalog-item {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.catalog-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    letter-spacing: 2px;
    border: 2px solid #e8f4fd;
}

.catalog-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.catalog-item p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.catalog-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4a90e2;
}

.catalog-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.catalog-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar, .treatment-content, .contact-us-content, .about-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-item {
        margin-right: 15px;
    }
    
    .related-items {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        flex-direction: column;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .prices-table {
        grid-template-columns: 1fr;
    }
    
    .catalog-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .side-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        margin-bottom: 30px;
    }
    
    .card-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .side-buttons {
        flex-direction: column;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .footer-legal-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        max-width: none;
    }
}

/* Medical Disclaimer */
.medical-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.medical-disclaimer p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.4;
}

.medical-disclaimer strong {
    color: #b8860b;
} 