* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f1e3;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.75;
  padding: 40px 20px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 8px solid #000000;
  box-shadow: 16px 16px 0 #000000;
  padding: 50px 45px;
  position: relative;
}

.content {
  background: #ffffff;
  padding: 35px 40px;
  margin-top: 30px;
}

.content p {
  margin-bottom: 28px;
  font-size: 1.08rem;
  text-align: justify;
  color: #000000;
}

h1 {
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 40px;
  text-align: center;
  color: #000000;
  border-bottom: 6px solid #000000;
  padding-bottom: 20px;
}

/* Blog images */
.blog-image {
  width: 100%;
  border: 2px solid #000000;
  margin: 35px 0;
  display: block;
}

/* Remaining placeholders */
.replace-image {
  width: 100%;
  min-height: 480px;
  background: #ffffff;
  border: 2px solid #000000;
  margin: 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.05rem;
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    padding: 35px 25px;
    border-width: 5px;
    box-shadow: 12px 12px 0 #000;
  }

  h1 {
    font-size: 2.1rem;
  }

  .content {
    padding: 25px 20px;
  }

  .replace-image {
    min-height: 380px;
  }
}
