body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

header {
    background: #003366;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

nav {
    background: #00509e;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 15px 20px;
}

nav a:hover {
    background: #003f7d;
}

main section {
    margin: 50px 0;
}

.service {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%; /* Ensure container uses full width */
    box-sizing: border-box;
}

    .service img {
        display: block;
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #00509e;
    color: white;
    padding: 10px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #003f7d;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}

.service ul {
    text-align: left;
    padding-left: 40px;
    list-style-type: disc;
}

.service li {
    margin-bottom: 8px;
    padding-left: 8px;
}
