/* General styling */
html,
body {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Top bar styles */
.top-bar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

/* Banner styles */

.banner {
    background-color: #333;
    color: #fff;
    display: flex;
    min-height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
}

.banner-text {
    flex-basis: 50%;
    text-align: center;
}

.container {
    max-width: 960px;
    min-height: 100%;
    margin: 0 auto;
    padding: 20px;
}

h3 {
    color: #ff8c00;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #ebddcc;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    color: #ebddcc;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
    color: #ebddcc;
}

li {
    margin-bottom: 5px;
    color: #ebddcc;
    line-height: 1.5;
}

/* Main content section styling */
.section {
    margin: 0 0;
    min-height: 100%;
    background-color: #222;
    padding: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.service {
    padding: 10px;
    background-color: #2f2f2f;
    color: #ebddcc;
    border-radius: 10px;
    text-align: center;
}

.service h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.service p {
    margin-bottom: 15px;
}

.service a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff8c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service a:hover {
    background-color: #ff8c00;
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.footer a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}
