/\* style.css \*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
line-height: 1.6;
}

header {
text-align: center;
margin-bottom: 50px;
}

header h1 {
font-size: 3em;
margin-bottom: 10px;
}

header p {
font-size: 1.2em;
color: #555;
}

section {
margin-bottom: 40px;
}

h2 {
font-size: 2em;
margin-bottom: 15px;
color: #222;
}

.service {
margin-bottom: 20px;
}

.service h3 {
font-size: 1.4em;
margin-bottom: 8px;
}

ul, ol {
padding-left: 20px;
}

ul li, ol li {
margin-bottom: 10px;
}

form {
display: flex;
flex-direction: column;
}

form label {
margin: 10px 0 5px;
font-weight: bold;
}

form input,
form textarea {
padding: 12px;
font-size: 1em;
border: 1px solid #ccc;
border-radius: 4px;
margin-bottom: 15px;
}

form button {
padding: 14px;
font-size: 1em;
border: none;
border-radius: 4px;
background: #0073e6;
color: #fff;
cursor: pointer;
}

form button\:hover {
background: #005bb5;
}

footer {
text-align: center;
font-size: 0.9em;
color: #777;
margin-top: 50px;
}
