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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;
}

/* HERO HEADER */
header .hero {
  background-image: url('header-background.jpg');
  background-repeat:no-repeat;
  background-size:cover;
  background-position:bottom center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

header .hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow:
    -2px -2px 0 #000000,
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000;
}

header .hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow:
    -2px -2px 0 #000000,
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000;
}

.cta-button {
  display: inline-block;
  padding: 15px 25px;
  background-color: #d62828;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #b81e1e;
}

/* SECTION STYLES */
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  color: #1d3557;
  margin-bottom: 20px;
}

section p, section li {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.features ul {
  list-style: disc;
  padding-left: 20px;
}

.screenshot img {
  width: 20%;
  margin:20px 2% 20px 2%;
  border-radius: 10px;
  box-shadow: #808080 0px 0px 10px;
}

/* FAQ */
.faq details {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
}

.faq summary {
  font-weight: bold;
  font-size: 1.1rem;
}

.faq p {
  margin-top: 10px;
  font-size: 1rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 10px;
  background: #1d3557;
  color: #fff;
  font-size: 0.95rem;
}

footer a {
  color: #fca311;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .screenshot img {
    width: 45%;
    margin:30px 2% 30px 2%;
  }
  header .hero h1 {
    font-size: 2.2rem;
  }

  header .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }

  section h2 {
    font-size: 1.5rem;
  }
}












