body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #111;
    scroll-behavior: smooth;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 80px;
}

nav {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

nav a {
    color: #111;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 500;
}

section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.hero {
    text-align: center;
    background: #eeeeee;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero h1 {
    color: #e60000;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .cta {
    margin-top: 2rem;
}

.cta-button {
    background-color: #e60000;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #c70000;
}

.services h3 {
    color: #e60000;
    margin-top: 2rem;
}

footer {
    background: #f1f1f1;
    color: #444;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    margin-top: 4rem;
    border-top: 1px solid #ccc;
}
