/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #0d47a1;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header img {
  vertical-align: middle;
}

/* Navigation */
nav {
  background: #1976d2;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 10px 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #1976d2;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero .btn {
  background: #fff;
  color: #1976d2;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* Sections */
.section {
  padding: 40px 0;
  background: #fff;
}

.section.alt {
  background: #f0f0f0;
}

h1, h2 {
  margin-bottom: 20px;
}

.services-list {
  list-style: disc inside;
}

address {
  margin-bottom: 20px;
  font-style: normal;
}

/* Team Members */
.team-member {
  margin-bottom: 40px;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Contact Form */
#contact-form {
  display: grid;
  gap: 15px;
  max-width: 500px;
}

#contact-form label {
  font-weight: bold;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#contact-form button {
  background: #1976d2;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

#contact-form button:hover {
  background: #0d47a1;
}

/* Map */
.map {
  margin: 20px 0;
}

/* Footer */
footer {
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }
}