/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Tagline */
.tagline {
    text-align: center;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif; /* Use a more stylish font */
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50; /* Darker color for better readability */
}

/* Category Boxes */
.category-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    background-color: #f9f9f9;
}

.category-box h2 {
    margin-top: 0;
}

.category-box a {
    color: #e67e22; /* A different color for category links */
    font-size: 20px; /* Slightly larger font size for category headings */
}

.category-box ul {
    list-style-type: none;
    padding-left: 0;
}

.category-box ul li {
    margin-bottom: 10px;
}

/* Individual Page Styles */
h1 {
    font-size: 28px;
    margin-top: 0;
}

.back-to-home {
    display: block;
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    color: #3498db;
}

.back-to-home:hover {
    text-decoration: underline;
}

