
/* Content Section */
.content-section {
    background-color: #fff;
    padding: 3rem 0;
}

.content-block {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Disease Items */
.disease-item {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.disease-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.disease-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.disease-item h4 i {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

/* Alert Customization */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-heading {
    display: flex;
    align-items: center;
    color: inherit;
}

/* Blockquote Styling */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}



/* Share Section */
.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.share-section button {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.share-section button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .disease-item {
        padding: 1rem;
    }
}
