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

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

.container {
  width: 80%;
  margin: 0 auto;
}

.header {
  background-color: #003333;
  color: white;
  padding: 20px 0;
}

.header .logo img {
  height: 50px;
}

.navigation ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.navigation li {
  margin-left: 20px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-color: #004444;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #e55d00;
}

.about, .services, .accounts, .contact {
  padding: 50px 0;
  text-align: center;
}

.services .service-card {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #003333;
  font-size: 1.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #666;
}

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