/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc;
}

header {
    background: #007acc;
    color: white;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

header ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

header ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

header ul li a:hover {
    background: #005fa3;
    border-radius: 5px;
}

.hero {
    background: lightblue;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    margin-bottom: 1rem;
}

.hero .btn {
    background: #007acc;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.container {
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: white;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form input, form textarea, form button {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
}

footer {
    background: #007acc;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
