body {
  background: #fff;
  color: #000;
  font-size: 15px;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  padding-top: 2rem;
}

h1 {
  font-family: "Barlow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  color: #000;
}

h2,
h3 {
  font-family: "Barlow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  color: #555;
  transition: color 0.5s ease;
}

h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  transition: color 0.5s ease;
}

.section-wrapper:hover h2,
.section-wrapper:hover h3 {
  color: #A259FF;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header p {
  color: #666;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.cta {
  margin-top: 2rem;
}

.button {
  border: 1px solid #A259FF;
  border-color: #A259FF;
  border-radius: 20px;
}

.cta a {
  color: #fff;
  background-color: #A259FF;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 0.2rem;
}

.cta a:hover {
  border-color: #000;
  color: #FFF;
  background-color: #000;
  transition: background-color 0.5s, color 0.5s ease;
}

.cta a.button-outline {
  background-color: transparent;
}

.cta a.button-outline:hover {
  border-color: #000;
  color: #000;
}

.section-wrapper {
  padding: 8rem 2rem 6rem 2rem; /* top right bottom left */
}

.alt-section {
  background-color: #EFEFEF;
}

.section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-title {
  flex: 1 1 30%;
  max-width: 30%;
}

.section-content {
  flex: 1 1 65%;
  max-width: 65%;
}

footer {
  margin: 0 auto;
  text-align: left;
  padding: 3rem 0;
  color: #999;
  font-size: 12px;
  background-color: #EFEFEF;
}

a {
  color: #000;
  transition: background-color 0.5s, color 0.5s ease;
}

a:hover {
  color: #A259FF;
  text-decoration: none;
}

.contact-list i {
  margin-right: 8px;
  color: #A259FF;
}

.contact-list li {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title,
  .section-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-buttons {
    align-items: stretch;
  }
}
