
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #003366;
}

a {
  text-decoration: none;
  color: #007acc;
}

a.btn {
  background-color: #007acc;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: bold;
}

a.btn:hover {
  background-color: #005b99;
}

header.hero {
  background: url('assets/panama-skyline.png') center center / cover no-repeat;
  color: white;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
}

header.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 32, 63, 0.65);
  z-index: 0;
}

header.hero * {
  position: relative;
  z-index: 1;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: rgba(0, 32, 63, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.top-nav nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.top-nav nav ul li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.lang-switcher {
  display: flex;
  gap: 10px;
}

.lang-switcher a {
  font-size: 1.2rem;
  color: white;
}

.logo-small {
  height: 40px;
  width: auto;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.subsidiary-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.subsidiary {
  max-width: 200px;
  text-align: center;
}

.subsidiary img {
  width: 100px;
  height: auto;
}

.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.service-item {
  width: 200px;
  padding: 20px;
  background-color: #e0f7fa;
  border-radius: 10px;
  color: #003366;
}

.service-item span {
  font-size: 2rem;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

form button {
  background-color: #007acc;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #005b99;
}

footer {
  background-color: #002b5c;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
.blog article {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
