body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #e0e0e0;
}

header, footer {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header .container, footer .container {
    width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo, footer p {
    font-size: 24px;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: #555;
    border-radius: 5px;
}

.hero {
    background: url('pexels-samson-katt-5225234.jpg') no-repeat center center/cover;
    color: #fff;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1, .hero p {
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #005bb5;
}

.about, .services, .testimonials, .contact {
    padding: 40px 20px;
    margin: 20px 0;
    text-align: center;
}

.container {
    width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about {
    background-color: #f4f4f4;
}

.services {
    background-color: #e0e0e0;
}

.testimonials {
    background-color: #d4d4d4;
}

.contact {
    background-color: #c8c8c8;
}

h2 {
    margin-top: 0;
    font-size: 32px;
    color: #333;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    background: #fff;
    margin: 10px 0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services ul li:hover {
    transform: scale(1.05);
}

.testimonials blockquote {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact p {
    margin: 10px 0;
}

footer p {
    margin: 5px 0;
    font-size: 12px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
