﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.nimz {
  color: #004aad;
}

.liot {
  color: #0cc0df;
}


.products-intro {
  max-width: 900px;
  margin: 110px auto 20px;
  padding: 20px;
  text-align: center;
}

.products-intro h1 {
  font-size: 2.4rem;
  color: #004aad;
  margin-bottom: 18px;
}

.products-intro p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #4f5d6e;
}

.product-process {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.product-process h2 {
  text-align: center;
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  background: #fff;
  border: 1px solid rgba(12, 192, 223, 0.2);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 74, 173, 0.08);
}

.process-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.process-card p {
  color: #526071;
  line-height: 1.6;
}

.products-grid {
  max-width: 1300px;
  margin: 10px auto 30px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.product-card h3 {
  color: #004aad;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-card p {
  color: #526071;
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-card a,
.product-card span {
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 14px;
}

.product-card a {
  background: #0cc0df;
  color: #fff;
}

.product-card a:hover {
  background: #004aad;
}

.product-card.in-dev span {
  background: #eef3ff;
  color: #004aad;
}

.products-cta {
  max-width: 1200px;
  margin: 20px auto 50px;
  text-align: center;
  background: #004aad;
  color: #fff;
  border-radius: 12px;
  padding: 36px 20px;
}

.products-cta h2 {
  margin-bottom: 12px;
}

.products-cta p {
  margin-bottom: 18px;
}

.products-cta a {
  text-decoration: none;
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  background: #0cc0df;
  color: #fff;
  font-weight: 700;
}

.footer {
  background-color: #fff;
  color: #fff;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-follow,
.footer-legal {
  flex: 1;
  min-width: 200px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

.footer-about p,
.footer ul li a,
.footer-bottom p {
  color: gray;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #526071;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0a3b80;
  padding-top: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
.process-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
.products-intro {
    margin-top: 90px;
  }

  .products-intro h1 {
    font-size: 2rem;
  }

  .products-intro p {
    font-size: 1rem;
  }

  .process-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 200px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}`r`n`r`n
