/* General Styles */
body {
    font-family: 'Verdana', sans-serif;  /* Choose your preferred modern font */
    background-color: #fff; /* White background */
    color: #212529;        /* Dark gray text (adjust as needed) */
    line-height: 1.6;      /* Comfortable line height for readability */
    margin: 2000;
    padding: 100;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;  /* Slightly bolder headings */
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p, ul, ol {
    margin-bottom: 1.25rem; /* Consistent spacing for paragraphs and lists */
}

a {
    color: #007bff; /* Blue link color (adjust to your brand) */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 960px;   /* Restrict content width for readability */
    margin: 0 auto;     /* Center the container */
    padding: 2rem;      /* Add padding for visual comfort */
}

/* Header (Customize as needed) */
header {
    background-color: #f8f9fa; /* Light gray background */
    padding: 1rem 0;
}

/* Footer (Customize as needed) */
footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
}

/* Responsive Design (Adjust breakpoints as needed) */
@media (max-width: 768px) {
    .container {
        padding: 1rem; 
    }

    h1 { font-size: 2rem; } 
    h2 { font-size: 1.75rem; }
    /* ...adjust other font sizes as needed */
}
