/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
}

body {
  background: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

/* ---------- MAIN LAYOUT ---------- */
main {
  flex: 1;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  max-width: 800px;
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b8860b; /* gold tone */
}

.about-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 1rem;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }
}