* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

.hero {
  background-image: url("workspace-1.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
}

.hero-content {
  position: relative; 
  max-width: 800px;
  height: 300px;
  margin: auto;
}

.logo {
  width: auto;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 150px;
  margin-top: 100px;  
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
}

.url {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}


.section {
  padding: 70px 20px;
  text-align: center;
}

.section.light {
  background: #eef1f4;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #666;
}


.devices img {
  max-width: 35%;
  margin-top: 20px;
}


.solutions {
  list-style: none;
  margin-top: 20px;
}

.solutions li {
  margin: 8px 0;
  font-size: 15px;
}


.faq {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.faq h4 {
  margin-top: 20px;
  font-size: 16px;
}

.faq p {
  font-size: 14px;
  color: #666;
}


.team {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.member {
  max-width: 220px;
}

.member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.member h3 {
  margin-top: 15px;
}

.role {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.footer {
  background-image: url("workspace-1.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.footer h2 {
  position: relative;
}