/* ===============================
   Elegant Mature Feminine – styles.css
   =============================== */

body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: #f7f5f4;
  color: #333;
  line-height: 1.8;
}

/* -------- Hero Section -------- */
.hero {
  position: relative;
  height: 50vh;
  background: url("https://images.unsplash.com/photo-1528712306091-ed0763094c98?q=80&w=1920&auto=format&fit=crop") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.35);
}

.hero-content {
  position: relative;
  text-align: center;
}

.office-name {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.catchcopy {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* -------- Containers -------- */
.container {
  width: min(900px, 90%);
  margin: 60px auto;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #4a4542;
}

/* -------- Intro Section -------- */
.intro p {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* -------- Two column layout -------- */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.column ul {
  padding-left: 1.2rem;
}

.column p, .column ul {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* -------- Info Section -------- */
.info p {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* -------- Footer -------- */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #666;
}