body {
    margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; color: #e0e0e0; line-height: 1.6;
}
header {
    background: #1f1f1f; padding: 20px 50px; display: flex;
    justify-content: space-between; align-items: center; border-bottom: 2px solid #e50914;
}
.logo { font-size: 24px; font-weight: bold; color: #fff; text-decoration: none; }
.logo span { color: #e50914; }
nav a {
    color: #e0e0e0; text-decoration: none; margin-left: 20px; font-weight: 500;
}
nav a:hover { color: #e50914; }
.container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
h1 { color: #fff; font-size: 2.5em; margin-bottom: 10px; }
h2 { color: #e50914; border-bottom: 1px solid #333; padding-bottom: 10px; }
.btn {
    display: inline-block; background: #e50914; color: #fff; padding: 10px 25px;
    text-decoration: none; border-radius: 4px; margin-top: 15px; font-weight: bold;
}
.btn:hover { background: #b20710; }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.service-card { background: #1f1f1f; padding: 20px; border-radius: 8px; }
footer { text-align: center; padding: 20px; margin-top: 50px; background: #0a0a0a; color: #777; }
