/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  #line-height: 1.0;
  font-size: 21.33px; /* 16pt */
  margin: 0 4rem; /* Add left and right margins */
}

/* Header and navigation */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}


/* Hero section original*/
.hero {
  display: flex;
  flex-direction: column; /* Stack elements vertically on desktop */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0rem; 
  margin-bottom: 1px; /* Adjust the value as needed */
}


.hero-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-content button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}
.examples {
  margin-top: 1px; /* Adjust the value as needed */
}
.example {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.example-content h3,
.example-content img,
.example-content p {
  margin-bottom: 1rem;
}

.example-image {
  max-width: 10%;
  height: auto;}

/* Features section */
.features {
  background-color: #f4f4f4;
  padding: 2rem;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.feature {
  flex: 0 0 300px;
  margin: 1rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .feature-list {
    flex-direction: column;
    align-items: center;
  }
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 21.33px; /* 16pt */
}

/* Header and navigation */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}

/* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.hero-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-content button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.example {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.example-content h3,
.example-content img,
.example-content p {
  margin-bottom: 1rem;
}

.example-image {
  max-width: 10%;
  height: auto;}

/* Features section */
.features {
  background-color: #f4f4f4;
  padding: 2rem;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.feature {
  flex: 0 0 300px;
  margin: 1rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .feature-list {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) {
  body {
    margin: 2% 33% 3% 33%; /* Increase margins on desktop */
  }
}
