body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f8faff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: linear-gradient(90deg, #7be7ef 0%, #1f70e5 100%);
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(31,112,229,0.07);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 48px;
  border-radius: 12px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: #7be7ef;
}

.hero {
  background: linear-gradient(120deg, #7be7ef 0%, #1f70e5 100%);
  color: #fff;
  padding: 4rem 0 3rem 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-text {
  flex: 1 1 350px;
  min-width: 260px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem 0;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-img-wrap {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}
.hero-illustration {
  width: 220px;
  max-width: 90vw;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(31,112,229,0.10);
}
.btn-primary {
  background: linear-gradient(90deg, #7be7ef 0%, #1f70e5 100%);
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(31,112,229,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #1f70e5 0%, #7be7ef 100%);
  box-shadow: 0 4px 16px rgba(31,112,229,0.18);
}

section {
  padding: 3rem 0;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1f70e5;
  margin-bottom: 2rem;
  font-weight: 700;
}

.solutions .solution-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.solution-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(31,112,229,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 320px;
}
.solution-card:hover {
  box-shadow: 0 8px 32px rgba(31,112,229,0.18);
  transform: translateY(-4px) scale(1.03);
}
.solution-card h3 {
  color: #1f70e5;
  margin-bottom: 1rem;
}
.solution-img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(31,112,229,0.10));
}

.success-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.success-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(31,112,229,0.10);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 260px;
}
.success-card:hover {
  box-shadow: 0 8px 32px rgba(31,112,229,0.18);
  transform: translateY(-4px) scale(1.03);
}
.success-card h4 {
  color: #1f70e5;
  margin-bottom: 0.5rem;
}
.portfolio-img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(31,112,229,0.10));
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.about-img-wrap {
  flex: 1 1 220px;
  display: flex;
  justify-content: center;
}
.about-img {
  width: 180px;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(31,112,229,0.10);
}
.about-text {
  flex: 2 1 350px;
  min-width: 260px;
}
.about-text ul {
  margin: 1.5rem 0 0 0;
  padding: 0 0 0 1.2rem;
  color: #1f70e5;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-form button {
  align-self: flex-end;
}
.contact-info {
  text-align: center;
  color: #444;
}
.locations {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
  align-items: flex-start;
}
.location {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #f0f8ff;
  border-left: 4px solid #1f70e5;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
  max-width: 100%;
}
.location strong {
  min-width: 180px;
  margin-right: 0.7rem;
  text-align: left;
}

footer {
  background: #1f70e5;
  color: #fff;
  padding: 1.2rem 0;
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.customer {
  background: #f8faff;
  padding: 3rem 0 2.5rem 0;
}
.customer-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.customer-logo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(31,112,229,0.07);
  padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.customer-logo:hover {
  box-shadow: 0 6px 24px rgba(31,112,229,0.13);
  transform: translateY(-2px) scale(1.03);
}
.customer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.7rem;
  border-radius: 12px;
  background: #f0f8ff;
}
.customer-logo span {
  font-size: 1rem;
  color: #222;
  text-align: center;
  font-weight: 500;
}
.customer-section-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.1rem;
  display: inline-block;
}
.customer-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  display: block;
}
.customer-logo span {
  margin-top: 0.2rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(31,112,229,0.97);
  color: #fff;
  padding: 1.1rem 0.5rem 1.1rem 0.5rem;
  display: none;
  box-shadow: 0 -2px 16px rgba(31,112,229,0.13);
}
.cookie-banner-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
}
.btn-secondary {
  background: #fff;
  color: #1f70e5;
  border: none;
  padding: 0.7rem 1.7rem;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #e6f0ff;
  color: #0a3a7e;
}
@media (max-width: 900px) {
  .hero-content, .solutions .solution-categories, .success-stories, .about-flex, .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .solution-categories, .success-stories {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  nav ul {
    gap: 1rem;
  }
  section {
    padding: 2rem 0;
  }
  .location {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 0.97rem;
  }
  .location strong {
    margin-right: 0;
    min-width: unset;
  }
  .solution-categories, .success-stories {
    grid-template-columns: 1fr;
  }
  .solution-card, .success-card {
    min-height: unset;
    padding: 1.5rem 0.7rem;
  }
  .customer-logos {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .customer-logo img {
    width: 44px;
    height: 44px;
  }
  .cookie-banner-content {
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.97rem;
  }
}
@media (max-width: 700px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0;
    background: none;
  }
  nav ul li {
    width: 100%;
  }
  .lang-switch {
    align-self: flex-end;
    margin-top: 0.5rem;
  }
}
