body {
  font-family: "Tahoma", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1em;
}

header .logo {
  width: 120px;
  display: block;
  margin: 0 auto 10px;
}

nav {
  background: #0055a5;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
}

.section {
  padding: 20px;
  background: #fff;
  margin: 10px;
  border-radius: 8px;
}

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

.about-content .text {
  flex: 1 1 350px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #003366;
}

.about-content .text h2 {
  color: #0055a5;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-content .text p,
.about-content .text li {
  font-weight: bold;
}

.about-content .video {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.about-content video {
  max-width: 100%;
  height: auto;
  border: 2px solid #0055a5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.products img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.contact-item .phone {
  font-weight: bold;
  color: #003366;
  text-decoration: none;
}

.contact-item .phone:hover {
  text-decoration: underline;
}

.contact-item .whatsapp img {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 10px;
}

.footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.footer a {
  color: #00ccff;
  text-decoration: none;
}
