
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
    min-height: 100vh;
}

.page-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-left {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.content-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.content-left h2 {
    color: #1b5e20;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #1b5e20;
    position: relative;
}

.content-left h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #2e7d32;
    transition: width 0.5s ease;
}

.content-left h2:hover::after {
    width: 100%;
}

.content-left h3 {
    color: #1b5e20;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 20px 25px;
    border-left: 5px solid #1b5e20;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-left h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27,94,32,0.1), transparent);
    transition: left 0.6s ease;
}

.content-left h3:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(27, 94, 32, 0.2);
}

.content-left h3:hover::before {
    left: 100%;
}

.content-left h4, .content-left h5, .content-left h6 {
    color: #1b5e20;
    font-weight: 600;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 15px 20px;
    border-left: 4px solid #2e7d32;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.content-left h4 {
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.content-left h5 {
    font-size: 19px;
    margin: 22px 0 12px 0;
}

.content-left h6 {
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.content-left h4:hover, .content-left h5:hover, .content-left h6:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.content-left p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.content-left p:hover {
    color: #2c3e50;
}

.content-left img {
    width: 75%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    filter: brightness(0.95);
}

.content-left img:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

.doctor-consultation {
    color: #e74c3c;
    font-weight: 600;
    text-align: center;
    margin: 15px 0 25px 0;
    font-size: 17px;
    cursor: pointer;
    padding: 12px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #e74c3c, #c0392b) border-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.doctor-consultation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.doctor-consultation:hover {
    color: white;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.doctor-consultation:hover::before {
    width: 300px;
    height: 300px;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea15 0%, #764ba225 100%);
    padding: 20px;
    border-left: 5px solid #667eea;
    margin: 20px 0;
    border-radius: 10px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-text:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.sidebar {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 15px 35px rgba(255, 126, 95, 0.3);
    transition: all 0.3s ease;
}

.sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 126, 95, 0.4);
}

.sidebar-title {
    background: linear-gradient(135deg, #e55d87 0%, #5fc3e4 100%);
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateY(-100%); }
    100% { transform: rotate(45deg) translateY(100%); }
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.sidebar ul li {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.sidebar ul li::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.sidebar ul li:hover {
    color: white;
    transform: translateX(10px);
    font-weight: 600;
}

.sidebar ul li:hover::before {
    left: 0;
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.phone-highlight {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    padding: 3px 8px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-highlight:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
}

@media (max-width: 768px) {
    .page-container {
        grid-template-columns: 1fr;
    }

    .content-left {
        padding: 25px;
    }

    .sidebar {
        position: static;
    }

    .content-left img:hover {
        transform: scale(1.02);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}


