/* styles.css */
body {
    background-color: #181818;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid #00aaff;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c8102e;
}

section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #1e1e1e;
    border: 3px solid #00aaff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    align-items: center;
}

.team-member {
    text-align: center;
    width: 180px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    border: 3px solid #00aaff;
    transition: transform 0.3s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
    border-color: #c8102e;
}

.team-members-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

button {
    background-color: #c8102e;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: 2px solid #00aaff;
}

button:hover {
    background-color: #c8102e;
    transform: scale(1.05);
    border-color: #c8102e;
}

footer {
    background-color: #1f1f1f;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    position: relative;
    bottom: 0;
    border-top: 3px solid #00aaff;
}

ul {
    list-style-type: disc;  /* Ensure bullets are displayed */
    padding-left: 40px;  /* Space bullets from the left */
    margin-left: 20px;
}

ul li {
    display: list-item; /* Ensure list items are not inline */
    text-align: left;
    margin-bottom: 8px; /* Add spacing between list items */
}

.tasks-container {
    text-align: center;  /* Center-aligns the content */
}

.tasks-container ul {
    list-style-type: disc;  /* Ensure bullets are displayed */
    padding-left: 0;  /* Remove default left padding */
    margin: 0 auto;  /* Center the list */
    text-align: left; /* Keep the text aligned properly */
    display: inline-block; /* Centers the list itself */
}