body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Header Section */
.header {
    background: gray;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.header p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background: #333;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.nav-list a:hover {
    background: #007bff;
    border-radius: 5px;
}

/* Section Styles */
.section {
    padding: 40px 0;
    text-align: center;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avatar{
  vertical-align: middle;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.section h2 {
    margin-bottom: 20px;
    color: black;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.section ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
}

.section ul li {
    margin: 10px 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.9rem;
}