/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3 {
  text-align: center;
}

p {
  text-align: center;
  margin: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.6)), url('./MaterialWebStran1/workspace-1.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero .logo {
  width: 100px;
  /* Adjust the size of the logo */
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero .company-url {
  color: white;
  text-decoration: underline;
}

/* Product Summary Section */
.product-summary {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.product-summary .product-image {
  max-width: 70%;
  height: auto;
  margin-top: 20px;
}

/* Solutions Section */
.solutions {
  padding: 50px 20px;
  text-align: center;
}

.solutions ul {
  list-style: none;
  padding: 0;
}

.solutions li {
  margin: 10px 0;
}

/* FAQs Section */
.faqs {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  margin-left: 360px;
  width: 60%;
  text-align: center;
}

/* Founding Team Section */
.founding-team {
  padding: 50px 20px;
  text-align: center;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.team-member {
  width: 23%;
  text-align: center;
  
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Footer Section */
.contact {
  background: linear-gradient(to bottom, rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.6));
  color: white;
  padding: 50px 20px;
  text-align: center;
}