/* Neuro-Rehabilitation Page Specific Styles */

/* Hero Section for Neuro-Rehabilitation */
.neuro-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('pathology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.neuro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.neuro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.neuro-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
.neuro-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
.neuro-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

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

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neuro-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .neuro-hero-title {
        font-size: 38px;
    }
    
    .neuro-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .neuro-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .neuro-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .neuro-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .neuro-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.neuro-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neuro-overview-header {
    text-align: left;
}

.neuro-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.neuro-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.neuro-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.neuro-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.neuro-left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neuro-right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.neuro-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.neuro-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-overview-image-left, .neuro-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.neuro-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neuro-conditions-two-column {
    display: flex;
    gap: 40px;
}

.neuro-conditions-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neuro-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.neuro-condition-icon {
    width: 24px;
    height: 24px;
    background-color: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.neuro-condition-icon i {
    color: white;
    font-size: 12px;
}

.neuro-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .neuro-overview-grid {
        gap: 40px;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neuro-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .neuro-overview-section {
        padding: 60px 0;
    }
    
    .neuro-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-left-column {
        order: 1;
    }
    
    .neuro-right-column {
        order: 2;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .neuro-right-image {
        justify-content: center;
    }
    
    .neuro-overview-title {
        font-size: 36px;
    }
    
    .neuro-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .neuro-conditions-two-column {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-overview-section {
        padding: 40px 0;
    }
    
    .neuro-overview-title {
        font-size: 32px;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neuro-consultation-title {
        font-size: 16px;
    }
    
    .neuro-condition-text {
        font-size: 15px;
    }
    
    .neuro-doctors-title {
        font-size: 32px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 240px;
    }
}

/* Symptoms Section */
.neuro-symptoms {
    padding: 80px 0;
    background: #f8f9fa;
}

.neuro-symptoms-title {
    font-size: 48px;
    font-weight: 700;
    color: #384C9F;
    text-align: left;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neuro-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-symptom-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.neuro-symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neuro-symptom-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.neuro-symptom-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.neuro-symptom-item:hover .neuro-symptom-icon {
    transform: scale(1.1);
}

.neuro-symptom-text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Symptoms Section */
@media (max-width: 1200px) {
    .neuro-symptoms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neuro-symptoms {
        padding: 60px 0;
    }
    
    .neuro-symptoms-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .neuro-symptom-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .neuro-symptom-image {
        width: 45px;
        height: 45px;
    }
    
    .neuro-symptom-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .neuro-symptoms {
        padding: 40px 0;
    }
    
    .neuro-symptoms-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .neuro-symptoms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-symptom-item {
        padding: 20px 15px;
    }
    
    .neuro-symptom-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .neuro-symptom-image {
        width: 40px;
        height: 40px;
    }
    
    .neuro-symptom-text {
        font-size: 14px;
    }
}

/* Technology That Cares Section */
.neuro-technology {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-technology-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neuro-technology-highlight {
    color: #384C9F;
}

.neuro-technology-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.neuro-technology-slider {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
}

.neuro-technology-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.neuro-technology-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.neuro-technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.neuro-technology-text {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.neuro-technology-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.neuro-technology-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 90%;
    transform: translateY(-50%);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    overflow-y: auto;
    box-sizing: border-box;
}

.neuro-technology-slide-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.neuro-technology-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

/* Custom scrollbar for text overlay */
.neuro-technology-text-overlay::-webkit-scrollbar,
.neuro-technology-description::-webkit-scrollbar {
    width: 6px;
}

.neuro-technology-text-overlay::-webkit-scrollbar-track,
.neuro-technology-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.neuro-technology-text-overlay::-webkit-scrollbar-thumb,
.neuro-technology-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.neuro-technology-text-overlay::-webkit-scrollbar-thumb:hover,
.neuro-technology-description::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.neuro-technology-image {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neuro-technology-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neuro-technology-slide.active .neuro-technology-img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.neuro-technology-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #384C9F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.neuro-technology-nav:hover {
    background: #384C9F;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.neuro-technology-prev {
    left: 20px;
}

.neuro-technology-next {
    right: 20px;
}

/* Slide Counter */
.neuro-technology-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #384C9F;
    z-index: 15;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Dots */
.neuro-technology-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.neuro-technology-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(56, 76, 159, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.neuro-technology-dot.active,
.neuro-technology-dot:hover {
    background: #384C9F;
    transform: scale(1.2);
}

/* Responsive Design for Technology Section */
@media (max-width: 1024px) {
    .neuro-technology-title {
        font-size: 42px;
    }
    
    .neuro-technology-slider {
        height: 450px;
        min-height: 450px;
    }
    
    .neuro-technology-text-overlay {
        padding: 40px;
    }
    
    .neuro-technology-slide-title {
        font-size: 28px;
    }
    
    .neuro-technology-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .neuro-technology {
        padding: 60px 0;
    }
    
    .neuro-technology-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-technology-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .neuro-technology-slider {
        height: 550px;
        min-height: 550px;
    }
    
    .neuro-technology-text-overlay {
        padding: 30px;
    }
    
    .neuro-technology-slide-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .neuro-technology-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .neuro-technology-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .neuro-technology-prev {
        left: 15px;
    }
    
    .neuro-technology-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .neuro-technology {
        padding: 40px 0;
    }
    
    .neuro-technology-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .neuro-technology-slider {
        height: 500px;
        min-height: 500px;
    }
    
    .neuro-technology-text-overlay {
        padding: 25px;
    }
    
    .neuro-technology-slide-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .neuro-technology-description {
        font-size: 13px;
    }
    
    .neuro-technology-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .neuro-technology-prev {
        left: 10px;
    }
    
    .neuro-technology-next {
        right: 10px;
    }
}

/* Why and Who Should Count on Neuro Rehabilitation Section */
.neuro-why-who {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-why-who-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.neuro-why-who-highlight {
    color: #384C9F;
}

.neuro-why-who-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.neuro-why-who-btn {
    background: #FDB714;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    white-space: nowrap;
}

.neuro-why-who-btn:hover,
.neuro-why-who-btn.active {
    background: #333;
    color: #FDB714;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.neuro-why-who-category {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neuro-why-who-category.active {
    display: block;
    opacity: 1;
}

.neuro-why-who-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto 50px;
    max-width: 600px;
}

.neuro-why-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.neuro-why-who-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neuro-why-who-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.neuro-why-who-check {
    width: 24px;
    height: 24px;
    background-color: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.neuro-why-who-check i {
    color: white;
    font-size: 12px;
}

.neuro-why-who-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-why-who-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-why-who-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.neuro-why-who-nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.neuro-why-who-nav-link:hover,
.neuro-why-who-nav-link.active {
    color: #384C9F;
}

/* Responsive Design for Why Who Section */
@media (max-width: 1024px) {
    .neuro-why-who-title {
        font-size: 42px;
    }
    
    .neuro-why-who-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .neuro-why-who {
        padding: 60px 0;
    }
    
    .neuro-why-who-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .neuro-why-who-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .neuro-why-who-btn {
        min-width: 200px;
    }
    
    .neuro-why-who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-why-who-image {
        order: 1;
    }
    
    .neuro-why-who-benefits {
        order: 2;
    }
    
    .neuro-why-who-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-why-who {
        padding: 40px 0;
    }
    
    .neuro-why-who-title {
        font-size: 32px;
    }
    
    .neuro-why-who-btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .neuro-why-who-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .neuro-why-who-benefit-item {
        font-size: 15px;
    }
    
    .neuro-why-who-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Dental Treatment Approach Section */
.dental-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.dental-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.dental-treatment-highlight {
    color: #384C9F;
}

.dental-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dental-treatment-item {
    text-align: center;
    padding: 0;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Add padding to all items except those with only an image */
.dental-treatment-item:not(:has(img.dental-treatment-icon-img:only-child)) {
    padding: 30px 20px;
}

.dental-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dental-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.dental-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dental-treatment-item:hover .dental-treatment-icon-img {
    transform: scale(1.1);
}

.dental-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dental-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Full width image in dental treatment grid */
.dental-treatment-item img.dental-treatment-icon-img:only-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin: 0;
    padding: 0;
    display: block;
}

/* Remove padding from container when it only contains image */
.dental-treatment-item:has(img.dental-treatment-icon-img:only-child) {
    padding: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .dental-treatment-title {
        font-size: 42px;
    }
    
    .dental-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dental-treatment-approach {
        padding: 60px 0;
    }
    
    .dental-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .dental-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dental-treatment-item {
        padding: 25px 20px;
    }
    
    .dental-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .dental-treatment-approach {
        padding: 40px 0;
    }
    
    .dental-treatment-title {
        font-size: 32px;
    }
    
    .dental-treatment-item {
        padding: 20px 15px;
    }
    
    .dental-treatment-item-title {
        font-size: 16px;
    }
    
    .dental-treatment-description {
        font-size: 13px;
    }
}

/* When Should You Count on this Test Section */
.pathology-test-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.pathology-test-header {
    text-align: center;
    margin-bottom: 50px;
}

.pathology-test-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pathology-test-left {
    padding-right: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.pathology-test-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.pathology-test-highlight {
    color: #384C9F;
}

.pathology-test-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pathology-test-list {
    display: flex;
    flex-direction: column;
}

.pathology-test-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.pathology-test-item:hover {
    box-shadow: none;
    transform: none;
}

.pathology-test-icon {
    width: 40px;
    height: 40px;
    background: #FF6B6B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pathology-test-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.pathology-test-info-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pathology-test-name {
    font-size: 1rem;
    font-weight: 600;
    color: #384C9F;
    margin: 0;
}

.pathology-test-separator {
    color: #666;
    font-size: 1rem;
}

.pathology-test-symptoms {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.pathology-test-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.pathology-test-right .pathology-test-image {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pathology-test-right .pathology-test-lab-image {
    width: 100%;
    height: auto;
    display: block;
}

.pathology-test-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pathology-test-image:hover {
    transform: scale(1.02);
}

.pathology-test-lab-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Health Packages Table in Right Section */
.health-packages-wrapper {
    width: 100%;
    max-width: 900px;
}

.packages-table-wrapper {
    background: transparent;
    padding: 20px;
    max-height: 650px;
    overflow-y: auto;
    position: relative;
}

.packages-table-wrapper::-webkit-scrollbar {
    width: 8px;
}

.packages-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.packages-table-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.packages-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.health-packages-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.health-packages-table tbody {
    display: block;
    padding-top: 10px;
}

.health-packages-table thead {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
}

.health-packages-table thead tr {
    display: table;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    margin-bottom: 20px;
}

.health-packages-table thead th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
}

.col-package {
    width: 28%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.col-parameters {
    width: 52%;
    padding-left: 25px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.col-tests {
    width: 20%;
    text-align: center !important;
}

/* Table Rows and Cells */
.package-row {
    border: 2px solid #e0e7ff;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    display: table;
    width: calc(100% - 10px);
    margin: 0 5px 20px 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.package-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #1a237e 0%, #283593 100%);
}

.package-row:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(26, 35, 126, 0.15);
    border-color: #1a237e;
}

.package-row:last-child {
    margin-bottom: 0;
}

.package-info-cell {
    padding: 25px 20px 25px 30px;
    vertical-align: top;
    border-right: 1px solid #e8e8e8;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(to right, #fafbfc 0%, #ffffff 100%);
}

.package-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parameters-cell {
    padding: 25px;
    vertical-align: top;
    border-right: 1px solid #e8e8e8;
    background: white;
}

.parameters-text {
    font-size: 0.85rem;
    color: #424242;
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.parameters-meta {
    display: flex;
    gap: 25px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
}

.prereq,
.report {
    font-size: 0.75rem;
    color: #616161;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.prereq::before {
    content: "🕐";
    margin-right: 5px;
}

.report::before {
    content: "📊";
    margin-right: 5px;
}

.tests-cell {
    padding: 25px 20px;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(to left, #f8f9ff 0%, #ffffff 100%);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.tests-count {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.tests-label {
    font-size: 0.75rem;
    color: #757575;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.packages-cta {
    margin-top: 25px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 100%);
    border-radius: 12px;
}

.cta-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000033;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.packages-cta .btn-yellow {
    background: white;
    color: #000033;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.packages-cta .btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Pathology Test Info Section */
@media (max-width: 1200px) {
    .pathology-test-content {
        gap: 30px;
    }

    .health-packages-wrapper {
        max-width: 700px;
    }

    .packages-table-wrapper {
        overflow-x: auto;
    }

    .health-packages-table {
        min-width: 600px;
    }
}

@media (max-width: 1024px) {
    .pathology-test-content {
        gap: 40px;
    }
    
    .pathology-test-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pathology-test-info {
        padding: 60px 0;
    }

    .pathology-test-header {
        margin-bottom: 40px;
    }

    .pathology-test-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pathology-test-left {
        padding-right: 0;
        order: 1;
    }

    .pathology-test-right {
        padding-left: 0;
        order: 2;
        margin-top: 30px;
    }

    .pathology-test-title {
        font-size: 2rem;
    }

    .health-packages-wrapper {
        max-width: 100%;
    }

    .packages-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .health-packages-table {
        min-width: 500px;
        font-size: 0.9rem;
    }

    .health-packages-table thead th {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .package-info-cell,
    .parameters-cell,
    .tests-cell {
        padding: 15px 10px;
    }

    .package-name {
        font-size: 0.85rem;
    }

    .package-price {
        font-size: 1.1rem;
    }

    .parameters-text {
        font-size: 0.75rem;
    }

    .prereq,
    .report {
        font-size: 0.7rem;
    }

    .tests-count {
        font-size: 1.5rem;
    }
    
    .pathology-test-description {
        font-size: 1rem;
    }
    
    .pathology-test-item {
        padding: 12px 0;
    }
    
    .pathology-test-icon {
        width: 35px;
        height: 35px;
    }
    
    .pathology-test-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .pathology-test-name {
        font-size: 0.95rem;
    }
    
    .pathology-test-separator {
        font-size: 0.95rem;
    }
    
    .pathology-test-symptoms {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pathology-test-info {
        padding: 40px 0;
    }
    
    .pathology-test-title {
        font-size: 1.8rem;
    }
    
    .pathology-test-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .pathology-test-list {
        gap: 15px;
    }
    
    .pathology-test-item {
        padding: 10px 0;
        gap: 12px;
    }
    
    .pathology-test-icon {
        width: 32px;
        height: 32px;
    }
    
    .pathology-test-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .pathology-test-info-content {
        flex-wrap: wrap;
    }
    
    .pathology-test-name {
        font-size: 0.9rem;
    }
    
    .pathology-test-separator {
        font-size: 0.9rem;
    }
    
    .pathology-test-symptoms {
        font-size: 0.8rem;
    }
}

/* Meet Our Doctors Section */
.neuro-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.neuro-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.neuro-doctors-highlight {
    color: #384C9F;
}

.neuro-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.neuro-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neuro-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.neuro-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neuro-doctor-card:hover .neuro-doctor-photo {
    transform: scale(1.05);
}

.neuro-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.neuro-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neuro-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.neuro-experience, .neuro-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.neuro-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.neuro-know-more-link:hover {
    color: #384C9F;
}

.neuro-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.neuro-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .neuro-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .neuro-doctors-title {
        font-size: 42px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .neuro-meet-doctors {
        padding: 60px 0;
    }
    
    .neuro-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 220px;
    }
    
    .neuro-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-meet-doctors {
        padding: 40px 0;
    }
    
    .neuro-doctors-title {
        font-size: 28px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 240px;
    }
    
    .neuro-doctor-info {
        padding: 18px;
    }
    
    .neuro-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.neuro-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neuro-treatment-highlight {
    color: #384C9F;
}

.neuro-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.neuro-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.neuro-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.neuro-treatment-item:hover .neuro-treatment-icon-img {
    transform: scale(1.1);
}

.neuro-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.neuro-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .neuro-treatment-title {
        font-size: 42px;
    }
    
    .neuro-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neuro-treatment-approach {
        padding: 60px 0;
    }
    
    .neuro-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .neuro-treatment-item {
        padding: 25px 20px;
    }
    
    .neuro-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-treatment-approach {
        padding: 40px 0;
    }
    
    .neuro-treatment-title {
        font-size: 32px;
    }
    
    .neuro-treatment-item {
        padding: 20px 15px;
    }
    
    .neuro-treatment-item-title {
        font-size: 16px;
    }
    
    .neuro-treatment-description {
        font-size: 13px;
    }
}

/* Neuro Rehabilitation Overlay Section */
.neuro-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.neuro-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.neuro-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neuro-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.neuro-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.neuro-physio-overlay-highlight {
    color: #384C9F;
}

.neuro-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.neuro-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.neuro-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.neuro-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.neuro-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.neuro-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .neuro-physio-background {
        height: 450px;
    }
    
    .neuro-physio-overlay-content {
        padding: 40px;
    }
    
    .neuro-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .neuro-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .neuro-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .neuro-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .neuro-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .neuro-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .neuro-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .neuro-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .neuro-physio-container {
        padding: 0 15px;
    }
    
    .neuro-physio-background {
        height: 350px;
    }
    
    .neuro-physio-overlay-content {
        padding: 20px;
    }
    
    .neuro-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .neuro-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .neuro-overlay-service-text {
        font-size: 13px;
    }
    
    .neuro-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Typical Conditions Treated Section */
.neuro-conditions-treated {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-conditions-treated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-conditions-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-conditions-doctor-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-conditions-content {
    padding: 20px 0;
}

.neuro-conditions-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Responsive Design for Typical Conditions Treated Section */
@media (max-width: 1024px) {
    .neuro-conditions-treated-grid {
        gap: 40px;
    }
    
    .neuro-conditions-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .neuro-conditions-treated {
        padding: 60px 0;
    }
    
    .neuro-conditions-treated-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-conditions-image {
        order: 1;
    }
    
    .neuro-conditions-content {
        order: 2;
        text-align: center;
    }
    
    .neuro-conditions-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .neuro-conditions-treated {
        padding: 40px 0;
    }
    
    .neuro-conditions-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .neuro-conditions-doctor-image {
        max-width: 100%;
    }
}

/* How It Works Section */
.how-it-works {
    background: white;
    position: relative;
}

.how-it-works-header {
    text-align: left;
    padding: 80px 0 2rem 0;
    background: white;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.title-highlight {
    color: #4A5FC1;
}

.how-it-works-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

.steps-container {
    background: linear-gradient(135deg, #4A5FC1, #6366F1, #8B5CF6);
    padding: 4rem 0;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.step-item {
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-1 {
    background: #7DD3FC;
    color: #0369A1;
}

.step-2 {
    background: #FDE047;
    color: #A16207;
}

.step-3 {
    background: #86EFAC;
    color: #166534;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-book-appointment {
    display: inline-block;
    background: #FDE047;
    color: #1e293b;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-appointment:hover {
    background: #FACC15;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 224, 71, 0.4);
}

.btn-get-directions {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-directions:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design for How It Works */
@media (max-width: 1024px) {
    .how-it-works-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-title {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-header {
        padding: 60px 0 1.5rem 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1rem;
    }
    
    .steps-container {
        padding: 3rem 0;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .step-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-book-appointment,
    .btn-get-directions {
        font-size: 0.8rem;
        padding: 0.7rem 1.3rem;
    }
}