/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4efe7;
  color: #333;
  font-family: 'Georgia', serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered container */
.container {
  text-align: center;
  padding: 20px;
}

/* Logo */
.logo {
  max-width: 550px;
  margin-bottom: 20px;
}

/* Brand name */
.brand {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #40826D;
}

/* Tagline */
.tagline {
  font-size: 1.1rem;
  color: #40826D;
}
