/* Importing Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Retaining Your Original Styles */
body {
    font-family: 'Poppins', Arial, sans-serif; /* Applied Poppins font */
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #1d2731;
    color: white;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    max-height: 60px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
}

/* Improved Container (No Background Change) */
.container {
    max-width: 80%;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex-grow: 1;
}

/* Enhanced Headings */
h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1d2731;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    font-weight: 400;
    color: #0073e6;
    margin-top: 20px;
}

/* Paragraphs */
p {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

/* Improved Project List */
ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

ul li {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* Green Checkmarks for List */
ul li::before {
    content: '✔';
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

/* Footer Styling Unchanged */
footer {
    background: #c1963c;
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: auto;
}
