
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.hero {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

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

.cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #0078d7;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #005fa3;
}

.services, .about, .contact {
    padding: 40px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 250px;
}

.contact a {
    color: #0078d7;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
    font-size: 14px;
}
