:root {
  --primary-dark-blue: #0f487b;
  --primary-teal: #1a9d9f;
  --bg-color: #f8f9fa;
  --text-main: #333333;
  --text-muted: #6c757d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark-blue);
  text-decoration: underline;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 20px;
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 250px;
  height: auto;
}

/* Coming Soon Specifics */
.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.coming-soon-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Privacy Page Specifics */
.page-header {
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
  background-color: var(--white);
  text-align: center;
}

.page-header .logo {
  max-width: 150px;
}

.privacy-content {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 3rem 4rem;
}

.privacy-content h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.privacy-content .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.privacy-content p {
  margin-bottom: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
}

.back-link::before {
  content: '←';
  margin-right: 0.5rem;
}

.back-link:hover {
  color: var(--primary-teal);
  text-decoration: none;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-top: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: auto;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--primary-teal);
}

@media (max-width: 600px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-subtitle {
    font-size: 1.1rem;
  }
  
  .privacy-content {
    padding: 2rem 1.5rem;
  }
}