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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f6f6f6;
  color: #222;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
.site-header {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  background-image: url("/images/duabox-pattern.svg"); /* Optional SVG background */
  background-repeat: repeat;
  background-size: 200px;
}

.site-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-header .tagline {
  font-size: 1.2rem;
  color: #ddd;
}

.hero-image {
  max-width: 280px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Main Content */
.site-main {
  background-color: #ffffff;
  padding: 3rem 1rem;
  border-top: 3px solid #1e1e1e;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

/* Footer */
.site-footer {
  background-color: #1e1e1e;
  color: #bbb;
  text-align: center;
  padding: 2rem 1rem;
}

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

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