* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header-logo {
    position: absolute;
    left: 20px;
    top: 20px;
}
.header-logo img {
    width: 120px;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

#hero {
    background: url('../img/hero.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h2 {
    font-size: 40px;
}

.btn {
    background: #e8491d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-images img {
    opacity: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    margin: 10px 0;
}


#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label,
#contact form input,
#contact form textarea {
    margin-bottom: 10px;
}

#contact form input,
#contact form textarea {
    padding: 10px;
    width: 100%;
}

#contact form button {
    background: #333;
    color: #fff;
    padding: 10px;
    border: none;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
.social-links img {
    width: 30px;
    margin: 0 10px;
    vertical-align: middle;
}
