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

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

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

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

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin-left: 20px;
}

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

.hero {
    background: url('assets/depanneuse-bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
}

.cta-button {
    background: #ff3300;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

#services {
    background: #000;
    padding: 40px 20px;
}

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

.service-item {
    max-width: 300px;
    text-align: center;
    margin: 20px;
}

.service-item img {
    width: 60px;
    margin-bottom: 10px;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    background: #ff3300;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 10px;
    background: #222;
}
