body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header, footer {
	background-color: #0056b3;
	color: #FF0;
	text-align: center;
	padding: 1em 0;
}

main {
    padding: 20px;
}

#symptom-categories {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#symptom-categories h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

#symptom-categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#symptom-categories li {
    margin: 5px 10px;
}

#symptom-categories a {
    text-decoration: none;
    color: #0056b3;
    padding: 8px 15px;
    border: 1px solid #0056b3;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#symptom-categories a:hover {
    background-color: #0056b3;
    color: white;
}

#symptom-list {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#symptom-list h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.symptom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.symptom-card img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.symptom-card h3 {
    color: #0056b3;
    margin-bottom: 5px;
}

.symptom-card p {
    font-size: 0.9em;
    color: #666;
}

#symptom-categories ul li div a {
	font-family: Comic Sans MS, cursive;
}