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

header.hero {
    background: #000;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero .logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.tagline {
    font-size: 1.2em;
    color: #e63946;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #b32032;
}

.call-btn {
    background: #28a745;
}

.call-btn:hover {
    background: #1e7e34;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.services .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.contact a {
    color: #e63946;
    text-decoration: none;
}

footer {
    background: #000;
    text-align: center;
    padding: 15px;
    color: #888;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .tagline {
        font-size: 1em;
    }
    .btn {
        width: 90%;
        padding: 15px;
        font-size: 1em;
    }
}
