/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
}

a {
  text-decoration: none;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* NAVBAR */
.navbar {
  background-color: #333333;
  border-bottom: 1px solid #ddd;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 150px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  padding: 10px;
  font-weight: bold;
}

/* HERO */
.hero {
  background-color: #fff;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero .text {
  flex: 1 1 400px;
}

.hero .image {
  flex: 1 1 400px;
}

/* FOOTER */
.footer {
  background-color: #222;
  color: #fff;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-left,
.footer-center,
.footer-right { display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-center img {
  height: 75px;
  margin-right: 10px;
}

.footer-right img {
  height: 24px;
  margin-right: 10px;
}

.footer-center p,
.footer-right p {
  margin-top: 10px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}


.solution-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.solution-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.solution-block.reverse {
  flex-direction: row-reverse;
}

.solution-block .text {
  flex: 1 1 400px;
}

.solution-block .image {
  flex: 1 1 400px;
}

.solution-summary {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 1.1em;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form button {
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}

.contact-form button:hover {
  background-color: #555;
}

.contact-map {
  flex: 1 1 400px;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info {
  margin-top: 20px;
  font-size: 1em;
  line-height: 1.6;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
