body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: #002b5b;
  color: white;
  padding: 1em 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.flag-btn {
  background: white;
  border: 2px solid #002b5b;
  border-radius: 6px;
  margin-left: 5px;
  cursor: pointer;
  padding: 3px 6px;
  transition: all 0.3s ease;
}

.flag-btn img {
  width: 24px;
  height: 18px;
  display: block;
}

.flag-btn:hover {
  transform: scale(1.15);
  border-color: #0078d7;
}

#hero {
  background: linear-gradient(rgba(0, 43, 91, 0.7), rgba(0, 43, 91, 0.7)),
    url("IS_1708.webp") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5em 1em;
}

#hero h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

#hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: auto;
}

section {
  padding: 3em 1em;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

h3 {
  color: #002b5b;
  font-size: 1.6em;
  margin-bottom: 0.5em;
}

p {
  font-size: 1em;
  line-height: 1.6;
}

.brands img,
.warehouse-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 1.5em 0;
  transition: transform 0.4s ease;
}

.brands img:hover,
.warehouse-image img:hover {
  transform: scale(1.02);
}

footer {
  background: #002b5b;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
  font-size: 0.9em;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  #hero {
    padding: 4em 1em;
  }
  #hero h2 {
    font-size: 1.6em;
  }
  #hero p {
    font-size: 1em;
  }
  section {
    padding: 2.5em 1em;
  }
  h3 {
    font-size: 1.4em;
  }
}
