* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('../img/BG.png');
  background-position: 50% 45%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
}

.refund-text {
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 25px;
  width: 800px;
}

.title img {
  max-width: 100%;
  height: auto;
}

.buttons {
  text-align: center;
}

/* cta row */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}

/* style cta buttons */
.cta a, a.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  color: #ffffff;
  background: #262626;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  width: 200px;
  text-align: center;
}

.cta a:hover, a.btn:hover {
  color: #88ffe9;
  background: #262626;
}

/* large button */
a.btn-lg {
  padding: 15px 30px;
  font-size: 20px;
  width: 250px;
}

.lineup {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 50px;
  width: 600px;
}

.lineup img {
  max-width: 100%;
  height: auto;
}

.footer {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 50px;
  width: 400px;
}

.footer img {
  max-width: 100%;
  height: auto;
}

/* footer styling */
.site-footer {
  background: #262626;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

/* faq styling */
.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  text-align: center;
}

.details-header {
  margin-bottom: 50px;
}

.details-subheader {
  margin-bottom: 10px;
}

.details {
  margin-bottom: 20px;
}

/* mobile media rules */
@media (max-width: 768px) {
  .title {
    width: 100%;
    margin-top: 75px;
  }

  .lineup, .footer {
    width: 100%;
  }

  .footer {
    width: 300px;
  }

  .cta {
    flex-direction: column;
  }

  .cta a {
    margin: 10px 0;
  }
}