/* General Reset */
body, h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Body background */
body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
header {
    background-color: #0d6efd;
    color: white;
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

/* Different background colors for each section */
#home {
    background-color: #e3f2fd;
    text-align: center;
}

#about {
    background-color: #fff3cd;
}

#solutions {
    background-color: #d1e7dd;
}

#why-choose-us {
    background-color: #f8d7da;
}

#contact {
    background-color: #dbeafe;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #212529;
    color: white;
    text-align: center;
    padding: 20px;
}