/* Center and widen the main content wrapper */
.main-content-wrapper {
  width: 95%;
  margin: 0 auto;
  padding: 20px;
}

/* Center each section */
.main-content-wrapper > div {
  margin: 0 auto;
}

/* Styling for each section */
.main-content-wrapper > div {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

/* Adjustments for larger screens */
@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px !important;
    text-align: center;
  }
  p {
    font-size: 14px !important;
    text-align: center;
    margin-bottom: 15px;
  }
}

/* Styling for headings */
h2 {
  font-size: 1.5rem;
  color: orange; /* Orange color for headings */
  margin-bottom: 10px;
}

/* Styling for paragraph text */
p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Link styling */
a {
  color: #422873;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6849ff;
}

/* Additional margin for contact link */
.contact-link {
  margin-top: 20px;
}
