/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f4f4f4;
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 40px 20px;
}

h1 {
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* Services */
#services {
    padding: 40px 20px;
    background: white;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background: #ff6f00;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

/* Contact */
#contact {
    padding: 40px 20px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 10px;
}
