/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background-color: #f2f2f2;
  padding: 4rem 1rem 2rem 1rem;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007acc;
  font-family: Arial, sans-serif;
}

.hero-text p {
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Info Sections */
.info-section {
  padding: 2rem 1rem;
  background-color: #fff;
}

.info-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #007acc;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}

.info-section p {
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.info-section ul,
.info-section ol {
  padding-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.info-section ul li,
.info-section ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
}

.btn:hover {
  background-color: #005f99;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .info-section h2 {
    font-size: 1.75rem;
  }

  .info-section p,
  .info-section ul,
  .info-section ol {
    font-size: 1rem;
  }
}
