
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #333;
    text-align:center;
}
header {
    background: #003366;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.call-button {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.hero img, .map img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}
section {
    padding: 30px 20px;
    text-align: center;
}
.services ul, .about ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    background: #003366;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .contact-form button:hover {
        background: #002244;
    }

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
