body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 10px 40px;
}

.logo {
    height: 90px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

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

.hero {
    text-align: center;
    padding: 120px 20px;
    background: url('hero-background.jpg') center center/cover no-repeat;
    color: white;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 6px solid #d32f2f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-box ul {
    padding-left: 20px;
    margin-top: 10px;
}

.service-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 12px;
    background: #d32f2f;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: white;
    margin-top: 40px;
}
