body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

.hero {
    height: 90vh;
    background: linear-gradient(to bottom right, #0a0a0a, #1e1e1e);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}

section {
    padding: 60px 15%;
}

.about, .benefits, .contact {
    background: #f7f7f7;
}

.services .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

textarea, input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    color: white;
}
