body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: #50b3a2;
    color: white;
    padding: 2em 0;
    text-align: center;
    position: relative;
}

header::after {
    content: '';
    background: url('header-bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

header h1 {
    margin: 0;
    font-size: 3em;
    position: relative;
    z-index: 2;
}

header p {
    margin: 0;
    font-size: 1.2em;
    position: relative;
    z-index: 2;
}

nav {
    background: #333;
    color: white;
    padding: 1em 0;
}

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

nav ul li {
    margin: 0 1em;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 2em 0;
    background: white;
    margin: 2em 0;
}

section#about {
    background: #eee;
}

.animated-image {
    width: 100%;
    max-width: 400px;
    animation: slideIn 2s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service {
    padding: 1em;
    margin: 1em;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact label {
    margin-top: 1em;
    font-weight: bold;
}

#contact input, #contact textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.5em;
    margin-top: 0.5em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact button {
    margin-top: 1em;
    padding: 0.5em 2em;
    background: #50b3a2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact button:hover {
    background: #45a091;
}

footer {
    background: #333;
    color: white;
    padding: 1em 0;
}

footer p {
    margin: 0;
}
