/* Prescription Assistance Section */
.prescription-assistance-section {
    background-color: #FFF8F5;
    padding: 80px 0;
}

.prescription-assistance-section .container {
    max-width: 1200px !important;
    margin: 0 auto;
}

.prescription-assistance-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-align: left;
}

.prescription-assistance-wrapper {
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.doctor-image {
    position: relative;
    height: 100%;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prescription-assistance-content {
    padding: 50px 60px;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assistance-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #333;
}

.assistance-description {
    margin-bottom: 1.5rem;
}

.assistance-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #333;
}

.assistance-process {
    margin-bottom: 1.5rem;
}

.assistance-process p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.assistance-note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.assistance-note strong {
    font-weight: 600;
}

.btn-chat-experts {
    background-color: #ff5722;
    color: white;
    padding: 15px 75px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-chat-experts:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .prescription-assistance-section {
        padding: 60px 0;
    }
    
    .prescription-assistance-content {
        padding: 40px;
    }
    
    .prescription-assistance-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .prescription-assistance-section {
        padding: 50px 0;
    }
    
    .prescription-assistance-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .prescription-assistance-content {
        padding: 30px;
        text-align: center;
    }
    
    .assistance-subtitle {
        font-size: 1.3rem;
    }
    
    .assistance-description p,
    .assistance-process p,
    .assistance-note {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .prescription-assistance-section {
        padding: 40px 0;
    }
    
    .prescription-assistance-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .doctor-image {
        height: 250px;
    }
    
    .prescription-assistance-content {
        padding: 25px 20px;
    }
    
    .assistance-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .assistance-description p,
    .assistance-process p {
        font-size: 0.9rem;
    }
    
    .assistance-note {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-chat-experts {
        padding: 12px 40px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}
