/* Add more pleasant styles for visuals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #007bff;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h3 i {
    margin-right: 10px;
}

main {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #007bff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

h2 i {
    margin-right: 8px;
}

ul {
    margin: 20px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

ul li i {
    margin-right: 10px;
}

p, ul li {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.link {
    color: #28a745;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 00px;
    background: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-radius: 6px;
}

footer a {
    color: #28a745;
}

footer a i {
    margin-right: 5px;
}
