/* Reset some styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 0;
    background-color: white;
    margin: 20px 0;
    border-radius: 8px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #007bff;
}

.service-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.box {
    background-color: #e9ecef;
    padding: 20px;
    width: 30%;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.box:hover {
    background-color: #d1d8e0;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}