/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: #007bff;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header h1 {
    float: left;
    font-size: 24px;
    padding-top: 10px;
}

header nav {
    float: right;
    padding-top: 10px;
}

header nav ul {
    list-style: none;
    padding-right: 20px;
}

header nav ul li {
    display: inline;
    padding-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background: #007bff; /* Solid background color */
    color: #fff;
    text-align: center;
    padding-top: 100px;
    height: 400px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); /* Gradient overlay */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e8491d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #c43c0b;
}

.features {
    background: #fff;
    padding: 20px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 20px;
}

.feature-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-block {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.feature-block h3 {
    margin-bottom: 10px;
}

.testimonials {
    background: #f4f4f9;
    padding: 20px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-block {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-block p {
    margin-bottom: 10px;
}

.testimonial-block cite {
    font-style: italic;
}

.about {
    background: #fff;
    padding: 20px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 10px;
}

.team-member p {
    margin-bottom: 10px;
}

.services {
    background: #f4f4f9;
    padding: 20px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-block {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.service-block h3 {
    margin-bottom: 10px;
}

.solutions {
    background: #fff;
    padding: 20px 0;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 20px;
}

.solution-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.solution-block {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.solution-block h3 {
    margin-bottom: 10px;
}

.blog {
    background: #f4f4f9;
    padding: 20px 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 20px;
}

.blog-posts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.blog-post {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}

.blog-post h3 {
    margin-bottom: 10px;
}

.blog-post p {
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #0056b3;
}

.contact {
    background: #fff;
    padding: 20px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #e8491d;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact form button:hover {
    background: #c43c0b;
}

footer {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    margin-bottom: 10px;
}

footer nav ul {
    list-style: none;
}

footer nav ul li {
    display: inline;
    padding-right: 10px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
}