﻿/* Save the following CSS as pal-style.css in your wwwroot/css folder */

/* General body and font styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
color: #333333;
margin: 0;
padding: 20px;
line-height: 1.6;
}

/* Container for the page content */
section {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
padding: 20px;
margin-bottom: 20px;
}

/* Headings styling */
h1 {
color: #005a9c;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
}

h2 {
color: #0078d7;
border-bottom: 2px solid #0078d7;
padding-bottom: 8px;
margin-bottom: 15px;
}

/* List styling */
ul {
list-style-type: disc;
padding-left: 20px;
}

li {
margin-bottom: 10px;
}

/* Strong text emphasis */
strong {
color: #004578;
}

/* Responsive adjustments */
@media (max-width: 600px) {
body {
padding: 10px;
}
section {
padding: 15px;
}
h1 {
font-size: 1.8em;
}
h2 {
font-size: 1.3em;
}
}