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

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

/* Hero section */
.hero {
  background: linear-gradient(to right, #0c1b2a, #133b63);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.hero .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero .lead {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-visual img {
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

/* Language switcher */
.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lang-switch button {
  background: #fff;
  border: none;
  color: #133b63;
  font-weight: bold;
  padding: 6px 12px;
  margin-left: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-switch button:hover {
  background: #ffcc00;
  color: #0c1b2a;
}

/* Main content */
.wrap {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.section {
  margin-bottom: 50px;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #133b63;
}

.section p, .section ul {
  font-size: 1rem;
  margin-bottom: 15px;
}

.section ul {
  list-style: none;
}

.section ul li::before {
  content: "✔️ ";
  color: #133b63;
}

/* Grid for features */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* CEO block */
.ceo {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ceo img {
  max-width: 120px;
  border-radius: 50%;
}

.ceo blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

/* CTA section */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #133b63;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

.cta p {
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #133b63;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: #ffcc00;
  color: #0c1b2a;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ffaa00;
}

.btn {
  background: #ffcc00;
  color: #0c1b2a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffaa00;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #eee;
  color: #555;
}
