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

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #f7f5f3;
  color: #2c2c2c;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header styles */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background-color: #fff0f5;
  border-bottom: 2px solid #e0c0d2;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #b14e72;
}

/* Main sections */
main {
  flex: 1;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 3rem;
}

h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

a {
  color: #b14e72;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

/* Call to action */
.cta {
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #b14e72;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #8d395a;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #fff;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
}