* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #0d6efd;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

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

#about {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

#services {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

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

.service p {
    font-size: 1em;
    color: #555;
}

footer {
    background-color: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

footer h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

footer p {
    font-size: 1.2em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
