.page-title {
    background-color: #3b5998;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.page-title h1 {
    margin-bottom: 0.5rem;
}

/* Health Intro */
.health-intro {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 5%;
    background-color: #f5f5f5;
    margin-bottom: 2rem;
}

.health-intro-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.health-intro-text h2 {
    color: #3b5998;
    margin-bottom: 1rem;
}

.health-intro-text p {
    margin-bottom: 1rem;
}

.health-intro-image {
    flex: 1;
    min-width: 300px;
}

.health-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Preventive Care */
.preventive-care {
    padding: 2rem 5%;
    margin-bottom: 2rem;
}

.preventive-care h2 {
    color: #3b5998;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preventive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.preventive-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.preventive-card:hover {
    transform: translateY(-5px);
}

.preventive-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.preventive-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #3b5998;
}

.preventive-card p {
    padding: 0 1rem;
}

.preventive-card ul {
    padding: 0 1rem 1rem 2.5rem;
}

.preventive-card li {
    margin-bottom: 0.5rem;
}

/* Nutrition */
.nutrition {
    padding: 2rem 5%;
    margin-bottom: 2rem;
    background-color: #f5f5f5;
}

.nutrition h2 {
    color: #3b5998;
    margin-bottom: 1.5rem;
    text-align: center;
}

.nutrition-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nutrition-text {
    flex: 2;
    min-width: 300px;
    padding-right: 2rem;
}

.nutrition-text h3 {
    color: #3b5998;
    margin: 1.5rem 0 0.5rem;
}

.nutrition-text ul {
    padding-left: 1.5rem;
}

.nutrition-text li {
    margin-bottom: 0.5rem;
}

.nutrition-image {
    flex: 1;
    min-width: 300px;
}

.nutrition-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nutrition-warning {
    background-color: #ffecb3;
    border-radius: 5px;
    padding: 1.5rem;
}

.nutrition-warning h3 {
    color: #ff6d00;
    margin-bottom: 1rem;
    text-align: center;
}

.toxic-foods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.toxic-food {
    text-align: center;
}

.toxic-food img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid #ff6d00;
}

/* Common Diseases */
.common-diseases {
    padding: 2rem 5%;
    margin-bottom: 2rem;
}

.common-diseases h2 {
    color: #3b5998;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.disease-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.disease {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.disease-header {
    background-color: #f5f5f5;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.disease-header h3 {
    color: #3b5998;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #3b5998;
}

.disease-content {
    padding: 1rem;
    display: none;
}

.disease-content p {
    margin-bottom: 0.5rem;
}

.disease.active .toggle-icon {
    transform: rotate(45deg);
}

.disease.active .disease-content {
    display: block;
}

/* Emergency */
.emergency {
    padding: 2rem 5%;
    background-color: #ffecb3;
    margin: 0 5% 2rem;
    border-radius: 5px;
}

.emergency h2 {
    color: #ff6d00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-signs {
    margin-bottom: 2rem;
}

.emergency-signs h3 {
    color: #ff6d00;
    margin-bottom: 1rem;
}

.emergency-signs ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.5rem;
    list-style-type: none;
}

.emergency-signs li {
    background-color: white;
    padding: 0.7rem;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.emergency-signs li::before {
    content: "!";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ff6d00;
    color: white;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    font-weight: bold;
}

.first-aid h3 {
    color: #ff6d00;
    margin-bottom: 1rem;
}

.first-aid ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.first-aid li {
    margin-bottom: 0.7rem;
}

.emergency-contact {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
}

.emergency-contact h4 {
    color: #ff6d00;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nutrition-content {
        flex-direction: column;
    }
    
    .nutrition-text {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .emergency-signs ul {
        display: block;
    }
    
    .emergency-signs li {
        margin-bottom: 0.5rem;
    }
}
