
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    padding: 10px 20px;
}

header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    margin-right: 10px;
}

.logo h2 {
    color: white;
    margin: 0;
}

.slider {
    overflow: hidden;
    height: 400px;
}

.slider figure {
    width: 300%;
    margin: 0;
    position: relative;
    animation: slide 12s infinite;
}

.slider img {
    width: 33.33%;
    height: 400px;
    float: left;
    object-fit: cover;
}

@keyframes slide {
    0% { left: 0; }
    30% { left: 0; }
    35% { left: -100%; }
    65% { left: -100%; }
    70% { left: -200%; }
    100% { left: -200%; }
}

.container {
    padding: 40px;
    background: white;
    margin: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
}

.box {
    background: #ddd;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.service {
    background: #eef;
    padding: 15px;
    margin: 10px 0;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
}
