body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.header-container {
    text-align: center;
    background: linear-gradient(to right, #26c6da, #00bcd4);
    color: white;
    padding: 20px 0;
}
.logo {
    max-width: 120px;
    margin-bottom: 10px;
}
nav ul {
    list-style-type: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    background: #4dd0e1;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}
.services-preview {
    padding: 40px 20px;
    text-align: center;
    background: #f4f4f4;
}
.service-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.service-item {
    width: 30%;
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
footer {
    padding: 20px;
    text-align: center;
    background: #00bcd4;
    color: white;
}
