/* Simple Reset to Normalize Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

header, section, footer {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    
}

/* Header Styling */
header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Navigation Menu Styling */
nav {
    margin-top: 1rem;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 1rem;
    background-color: #0056b3;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover {
    background-color: #007BFF;
    color: #fff;
}

/* Section Styling */
.content-section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #007BFF;
    padding-bottom: 0.5rem;
    color: #0056b3;
}

/* List Styling */
ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #007BFF;
    font-weight: bold;
}

/* Link Styling */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

/* Add Personality */
body {
    background: linear-gradient(180deg, #f9f9f9, #e9ecef);
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
