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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
  text-align: center;
}

.header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logo img {
  max-width: 100px;
}

.header-text {
  text-align: center;
}

.header-text h1 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.header-text p {
  font-size: 16px;
  color: #555;
}

.intro, .services, .about {
  padding: 50px 0;
  background-color: #fff;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
}

h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 26px;
}

ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 20px;
  text-align: left;
}

footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  margin-top: 40px;
}
