@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --bg-color: #6c7c88; /* Matches the slate-gray background */
  --text-color: #FFFFFF;
  --card-bg: #151616; /* Very dark, almost black for the card */
  --button-bg: #FFFFFF;
  --button-text: #000000;
  --border-radius: 12px;
  --card-border-radius: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
header {
  padding: 40px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.95;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 1;
}

/* Main Area */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}

.main-center {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 120px; /* offset to visually center */
}

/* Typography */
h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
}

.sub-headline {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.8;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Support Page Styles */
.support-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 40px;
}
h2:first-child {
  margin-top: 0;
}

p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
}

/* Contact Card */
.contact-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: 48px;
  margin-top: 64px;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-card p {
  opacity: 0.9;
  margin-bottom: 40px;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--border-radius);
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.button:hover {
  opacity: 0.9;
}

.email-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.response-time svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Privacy Policy Layout */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.privacy-content p {
  margin-bottom: 16px;
}
.privacy-content h2 {
  margin-top: 32px;
}

/* Footer */
footer {
  padding: 48px 0;
  text-align: center;
}

footer nav {
  margin-bottom: 24px;
}

footer nav a {
  margin: 0 16px;
  margin-left: 0;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
}

footer p {
  font-size: 13px;
  opacity: 0.4;
  margin: 0;
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  .contact-card { padding: 32px; }
  .contact-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}
