/* ===============================
   CIS89A Project Style Sheet
   Web Site Planning Page
================================= */

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f4f8;
    color: #1a1a1a;
}

/* Header */
header {
    background-color: #1f3a5f;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Sections */
section {
    background-color: white;
    margin: 15px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Headings */
h1, h2, h3 {
    color: #1f3a5f;
}

/* Lists */
ul {
    line-height: 1.8;
}

/* Links */
a {
    color: #1f3a5f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #1f3a5f;
    color: white;
    margin-top: 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
    section {
        margin: 10px;
        padding: 15px;
    }
}