/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ec0404;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ec0404;
    color: #fff;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    padding-left: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* Content Styles */
.content {
    padding: 2rem 0;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Services Styles */
.services {
    background-color: #f4f4f4;
    padding: 2rem 0;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services ul {
    list-style: none;
}

.services li {
    background-color: #fff;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
    background-color: #ec0404;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
