body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}
header {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
header img {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    text-align: center;
    background: url('../img/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 30px 20px;
}
.hero .btn-primary {
    background: #f2e9e9;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.services {
    display: flex;
    justify-content:center;
    gap: 20px;
    padding: 50px 20px;
}
.service-box {
    width: 30%;
    text-align: center;
}
.service-box img {
    width: 100%;
    border-radius: 8px;
}
.service-2 img {
    justify-content:left;
    width:20%;
    text-align: center;
    border-radius: 8px;
}

footer {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px 0;
}
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .service-box {
        width: 90%;
    }
}
