/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1,
h2,
h3 {
    color: #911515;
}

p {
    color: #555;
}

/* Header Styles */
.header {
    background-color: #911515;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.navbar ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #f4f4f4;
}

/* Section Styles */
.section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Download Button */
.download-btn {
    background-color: #911515;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #b71f1f;
}

/* Footer Styles */
.footer {
    background-color: #911515;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer p{
    color: white;
}

.team-container {
    display: flex;
    justify-content: space-around;
}
