/* Import Montserrat from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

body {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #000;
}

h1 {
  font-size: 2.5rem;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border: 1px solid #000;
}

/* Lists */
ul {
  margin-left: 20px;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
}

/* FAQ Section */
section[itemtype="https://schema.org/FAQPage"]
{
  margin-top: 40px;
  border-top: 2px solid #000;
  padding-top: 20px;
}

section h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}

section p {
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 0 15px;
    margin: 20px auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Footer Audio Section */
.audio-footer {
  background-color: #f9f9f9;
  border-top: 2px solid #000;
  padding: 30px 20px;
  margin-top: 60px;
  text-align: center;
}

.audio-footer h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000;
}

.audio-footer audio {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 15px;
  display: block;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.2s ease-in-out;
}

.download-btn:hover {
  background-color: #333;
}

/* Back Button */
.back-button-wrapper {
  margin-top: 30px;
}

.back-btn {
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  border: 2px solid #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.back-btn:hover {
  background-color: #000;
  color: #fff;
}
