body { font-family: Arial, sans-serif; display: flex; flex-direction: column; min-height: 100vh; background: linear-gradient(to bottom, #265780 0%, #dce7ed 50%, #ffffff 100%); background-attachment: fixed; color: #333; max-width: 1260px; margin: 0px auto;  margin-top: 5px; margin-bottom: 5px; }
header, .container, footer { max-width: 1260px; width: 100%; margin: 0px auto; padding: 0px; box-sizing: border-box; }
header { background-color: #F0F0F0; padding: 6px; display: flex; justify-content: space-between; align-items: center; border-top-left-radius: 6px; border-top-right-radius: 6px; }
header .logo a { display: inline-block; }
header .logo img { height: 70px; width: auto; margin-bottom: 0px; }
.container { display: flex; flex: 1; padding: 0px; }
main { flex: 3.25; padding: 18px; background-color: #fff; border-radius: 1px; box-sizing: border-box; max-width: 100%; overflow: hidden; }
aside { flex: 1.1; padding: 10px; background-color: #fff; border-radius: 1px; margin-left: 0px; overflow: hidden; }
footer { background-color: #333; color: white; text-align: center; padding: 10px 0; border-top: 1px solid #ddd; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }

.category-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; margin-top: 5px; }
.category-item { background-color: #ffffff; padding: 5px; border: 1px solid #e0e0e0; border-radius: 3px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.category-item:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); }
.category-item h3 { margin-top: 0; margin-bottom: 3px; font-size: 12px; font-weight: 600; color: #007BFF; transition: color 0.3s ease; }
.category-item h3 a { text-decoration: none; color: inherit; }
.category-item h3 a:hover { color: #0056b3; }
.category-item p { margin: 0; font-size: 14px; color: #555; line-height: 1.6; }

h1 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 600; color: #2c3e50; margin-bottom: 1rem; text-align: center; position: relative; animation: fadeIn 1s ease-in-out; }
.category-content p { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; line-height: 1.4; color: #555; text-align: justify; max-width: 100%; margin: 0 auto; margin-bottom: 8px; padding: 8px; background-color: #ffff; }

aside h1 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 600; color: #2c3e50; text-align: center; margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; }
aside h1::after { content: ''; display: block; width: 40px; height: 2px; background-color: #007BFF; margin: 0.5rem auto 0; border-radius: 2px; }
aside h1:hover::after { width: 60px; }

.site-footer { background-color: #333; color: #fff; padding: 10px 0; font-family: Arial, sans-serif; }
.footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; }
.footer-column { flex: 1; min-width: 200px; margin: 10px; }
.footer-column h3 { font-size: 18px; margin-bottom: 15px; color: #fff; }
.footer-column p, .footer-column ul { font-size: 14px; line-height: 1.6; color: #ccc; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #ccc; text-decoration: none; }
.footer-column ul li a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { text-align: center; margin-top: 10px; padding-top: 2px; border-top: 1px solid #444; font-size: 14px; color: #ccc; }

@media (max-width: 768px) { .container { flex-direction: column; } aside { margin-left: 0; margin-top: 0px; } header nav ul { flex-direction: column; gap: 10px; } header nav ul li a { padding: 10px; text-align: center; } h1 { font-size: 1.6rem; } .category-content p { font-size: 1rem; padding: 0.5rem; } aside h1 { font-size: 1.25rem; } aside h1::after { width: 30px; } aside h1:hover::after { width: 50px; } .footer-columns { flex-direction: column; } .footer-column { margin-bottom: 20px; } }
@media (max-width: 480px) { main { padding: 3px; } .pagination { flex-direction: column; align-items: center; } .pagination a { margin: 2px; } body { margin-top: 0px; margin-bottom: 0px; } }

