/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero {
    background: url('hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #0056b3;
}
.services {
    padding: 50px;
    text-align: center;
    background: #f4f4f4;
}
.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 300px;
}
.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 50px;
}

/* script.js */
