body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, #3b2c18 0%, #1a140a 100%);
  color: #f8e7b6;
}

.section {
  padding: 2rem 2rem;
}

.dark-background {
  background: radial-gradient(circle at center, #3b2c18 20%, #1a140a 100%);
}

.content {
  max-width: 1100px;
  margin: 0 auto;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.two-columns.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  min-width: 280px;
}

.column.image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  border: 2px solid #a7894b;
}

.column.text h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #f7dc8c;
  margin-bottom: 1rem;
}

.column.text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f1d57c;
}

.column.text p {
  font-size: 1.1rem;
  color: #f0e6c3;
}

/* Button */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #d3a537;
  color: #1a140a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #c09128;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .two-columns, .two-columns.reverse {
    flex-direction: column;
  }

  .column.text h1, .column.text h2 {
    text-align: center;
  }

  .column.text p {
    text-align: center;
  }
}
