/* CSS for Ecofleet Solutions Website */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px;
    margin-right: 10px;
}

header .logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #0056b3;
}

header .logo h1 span {
    color: #5cb85c;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.hero {
    padding: 80px 0;
    background-color: #e9f5f0;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.hero-right {
    flex: 1;
    text-align: right;
}

.hero-right img {
    max-width: 80%;
    height: auto;
}

.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.services .services-intro {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item img {
    max-width: 70px;
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.2rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Add CSS for the Careers section */
.careers {
    padding: 50px 0;
    background-color: #f7f7f7;
}
.careers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.careers h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}
.careers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.careers-grid .job-posting {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.careers-grid .job-posting h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.careers-grid .job-posting h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
}
.careers-grid .job-posting p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}
.careers-grid .job-posting ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.careers-grid .job-posting ul li {
    margin-bottom: 5px;
}
.careers-grid .job-posting strong{
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.button.apply {
    background-color: #f5a623;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button.apply:hover {
    background-color: #e49512;
}

@media (min-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.application-instructions {
    margin-top: 30px;
    padding: 20px;
    background-color: #e9f5f0;
    border-radius: 8px;
    border: 1px solid #b0e0d3;
}

.application-instructions h3 {
    font-size: 1.1rem;
    color: #0056b3;
    margin-bottom: 10px;
    font-weight: 600;
}

.application-instructions p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    display: inline;
}

.application-instructions .date-section {
    display: block;
    font-size: 1rem;
}

.application-instructions .date-section p{
    margin-bottom: 0;
    display: inline;
}

.application-instructions .date-section span {
    font-weight: normal;
}