body {
  background: #1a1a2e;
  color: #f0f0f0;
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  margin: 0;
}
.site-header {
  padding: 20px 5%;
  text-align: center;
}
.logo {
  font-family: "League Spartan", sans-serif;
  color: white;
  text-decoration: none;
  font-size: 24px;
}
.article-container {
  max-width: 750px;
  margin: 20px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
h1,
h2 {
  font-family: "League Spartan", sans-serif;
  color: white;
  line-height: 1.3;
}
h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-top: 1.5em;
}
.intro {
  font-size: 1.2rem;
  color: #a0c4ff;
}
ul {
  list-style: "✔ ";
  padding-left: 20px;
}
.comfort-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2em;
}
.comfort-table th,
.comfort-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.comfort-table th {
  font-family: "League Spartan", sans-serif;
}
.ideal-row {
  background: rgba(249, 212, 35, 0.1);
  font-weight: bold;
}
.cta-box {
  margin-top: 3em;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
}
.cta-button {
  display: inline-block;
  background: #f9d423;
  color: #1a1a2e;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-family: "League Spartan", sans-serif;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
}
