/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8c042;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px; /* Adjust based on your logo size */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #d69f29;
    transform: translateY(-2px);
}

main {
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 800px; /* Limit main content width */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    border-top: 5px solid #f8c042; /* Top border for footer */
}

.team-member {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc; /* Optional: border around the member section */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #f9f9f9; /* Optional: light background color */
}

.team-image {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Keep aspect ratio */
    border-radius: 50%; /* Make the image circular */
    margin-bottom: 15px; /* Space below the image */
}

blockquote {
    font-style: italic;
    color: #555; /* Change quote color */
    margin: 15px 0;
    padding-left: 10px;
    border-left: 2px solid #d69f29; /* Optional: decorative left border */
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 15px;
    }
}
