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

:root {
  --color-primary: #000;
  --color-text: #333;
  --color-background: #f5f2ed;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-height: 72px;
}

html {
  background-color: #f5f2ed;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: #f5f2ed;
  line-height: 1.6;
  min-height: 100vh;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: #f5f2ed;
  z-index: 1000;
}

.header-container {
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--color-primary);
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Main content */
main {
  padding-top: var(--header-height);
  min-height: calc(100vh - 200px);
}

/* Footer styles */
.footer {
  background-color: #f5f2ed;
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  text-align: center;
}

.footer h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.footer p {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

.footer-email {
  font-size: 18px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-email:hover {
  opacity: 0.7;
}