/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  background: url('https://www.csszengarden.com/213/ocean.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  padding: 40px;
}

/* Page wrapper using Grid */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
}

/* Typography styling like Garments design */
h1, h2 {
  font-family: 'Didot', serif;
  font-style: italic;
  letter-spacing: 2px;
  color: #2c3e50;
  margin-bottom: 10px;
}

h3 {
  margin-top: 30px;
  font-size: 1.3em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

p {
  margin-top: 10px;
  font-size: 1rem;
}

/* Footer style */
footer {
  grid-column: 1 / -1;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}
