* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    max-width: 1200px;
    width: 100%;
    max-height: 680px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    background: transparent;
    overflow: hidden;
    border-radius: 30px;
    z-index: 9;
}

.right-block {
    width: 480px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
	border-radius: 30px;
}

.right-content {
    padding: 20px 25px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.left-block {
    flex: 1;
    min-width: 0;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
	border-radius: 30px;
    padding: 30px;
}

.left-content {
    padding: 0px 30px 0px 30px;
}

.left-block::-webkit-scrollbar {
    width: 8px;
}

.left-block::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.left-block::-webkit-scrollbar-track-piece:start {
    margin-top: 30px;
}

.left-block::-webkit-scrollbar-track-piece:end {
    margin-bottom: 30px;
}

.left-block::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.left-block::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.left-block {
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.slide {
    width: 100%;
    height: 280px;
    margin: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.slide::before,
.slide::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 2;
}

.slide::before {
    left: auto;
    right: -40%;
    transform: rotate(-8deg);
    width: 100%;
}

.slide::after {
    left: -40%;
    right: auto;
    transform: rotate(8deg);
    width: 100%;
}

.clinic-titles {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0px;
}

.title-main {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.title-sub {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #555;
}

.phone-number {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #045469;
    margin-bottom: 12px;
}

.addresses {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.addresses p {
    margin: 3px 0;
}

.price-info {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.icon-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.buttonbot {
    width: 100%;
    margin: 0 auto;
}

.buttonbot table {
    width: 100%;
}

.buttonbot td {
    text-align: center;
    padding: 5px;
}

.buttonbot img {
    width: 50px;
    height: auto;
}

.lnks {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
}

.lnk {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
    padding: 10px 20px;
	width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lnk:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.buttonbot.butt {
    margin: 15px auto;
    width: 100%;
    table-layout: fixed;
}

.buttonbot.butt td {
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    width: 33.33%;
    vertical-align: top;
}

.buttonbot.butt img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.buttonbot.butt a {
    display: inline-block;
}

.buttonbot.butt tr td:first-child,
.buttonbot.butt tr td:last-child {
    width: 33.33%;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 15px;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.title {
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.first-letter {
    display: inline-block;
}

.text-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.text-box p {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

@media (max-width: 1100px) {
    .main-container {
        gap: 30px;
    }
    
    .right-block {
        width: 400px;
    }
    
    .slide {
        height: 240px;
    }
    
    .buttonbot img,
    .buttonbot.butt img {
        width: 45px;
    }
    
    .right-content {
        padding: 15px 20px 20px 20px;
    }
}

@media (max-width: 850px) {
    body {
        padding: 20px 15px;
        align-items: flex-start;
    }
    
    .main-container {
        flex-direction: column;
        gap: 20px;
        max-height: none;
        overflow: visible;
        border-radius: 30px;
    }
    
    .right-block {
        width: 100%;
    }
    
    .left-block {
        /* max-height: 500px; */
		padding: 0px !important;
    }
    
    .slide {
        height: 260px;
    }
    
    .lnks {
        margin-top: 20px;
    }
    
    .left-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .right-content {
        padding: 12px 15px 15px 15px;
    }
    
    .left-content {
        padding: 25px 20px;
    }
    
    .buttonbot img,
    .buttonbot.butt img {
        width: 40px;
    }
    
    .buttonbot td,
    .buttonbot.butt td {
        font-size: 10px;
        padding: 5px;
    }
    
    .title-main {
        font-size: 16px;
    }
    
    .title-sub {
        font-size: 14px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .slide {
        height: 220px;
    }
    
    .lnks {
        flex-direction: column;
        align-items: center;
    }
    
    .lnk {
        width: 80%;
        justify-content: center;
    }
    
    .title {
        font-size: 20px;
    }
    
    .text-box p {
        font-size: 14px;
    }
}



.bg-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    bottom: -100px;
    animation: moveSquare 25s infinite linear;
    border-radius: 4px;
    transform: rotate(45deg);
}

.bg-bubbles li:nth-child(1) {
    left: 10%;
    width: 80px;
    height: 80px;
    animation-duration: 20s;
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 160px;
    height: 160px;
    animation-delay: 2s;
    animation-duration: 30s;
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
    animation-duration: 25s;
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 120px;
    height: 120px;
    animation-duration: 35s;
    animation-delay: 1s;
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
    width: 60px;
    height: 60px;
    animation-duration: 22s;
    animation-delay: 3s;
}

.bg-bubbles li:nth-child(6) {
    left: 80%;
    width: 200px;
    height: 200px;
    animation-delay: 5s;
    animation-duration: 40s;
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 140px;
    height: 140px;
    animation-delay: 7s;
    animation-duration: 28s;
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 40px;
    height: 40px;
    animation-delay: 10s;
    animation-duration: 18s;
}

.bg-bubbles li:nth-child(9) {
    left: 85%;
    width: 25px;
    height: 25px;
    animation-delay: 2s;
    animation-duration: 15s;
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 300px;
    height: 300px;
    animation-delay: 12s;
    animation-duration: 45s;
}

@keyframes moveSquare {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-800px) rotate(360deg);
        opacity: 0;
    }
}

.button-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.button-item {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.button-icon {
    width: 30px;
    display: block;
    margin: 0 auto;
}

.button-label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}


@media (max-width: 768px) {
	
    .content.custom-text{
        display: flex !important;
        flex-direction: column;
    }
    .row.border-line-v {
        order: 3;
        padding-top: 20px;
    }
    
    .content.video {
        order: 2;
    }
    
    .content.about {
        order: 1;
    }
}