/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for the main content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.app-bar {
    background-color: #007BFF; /* Blue background */
    color: white; /* White text */
    padding: 20px;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.app-bar h1 {
    font-size: 2.5em; /* Large font size for header */
}

/* Main content styles */
.content {
    background: white; /* White background for the content area */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-top: 20px; /* Space between header and content */
}

/* Effective date styling */
.effective-date {
    font-weight: bold;
    margin-bottom: 15px;
    color: #555; /* Slightly darker text for emphasis */
}

/* Heading styles */
h2 {
    margin-top: 20px; /* Space above headings */
    margin-bottom: 10px; /* Space below headings */
    color: #007BFF; /* Blue color for headings */
}

/* List styles */
ul {
    list-style-type: disc; /* Bulleted list */
    margin-left: 20px; /* Indentation */
}

li {
    margin-bottom: 10px; /* Space between list items */
}

/* Link styles */
a {
    color: #007BFF; /* Link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .app-bar h1 {
        font-size: 2em; /* Smaller font size for mobile */
    }
    
    .content {
        padding: 15px; /* Less padding on mobile */
    }
}
