:root {
  --bg: #000;
  --fg: #fff;
  --muted: #ccc;
  --font-main: 'Georgia', serif;
  --font-sans: 'Inter', Arial, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  padding: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  height: 32px;
  width: 32px;
}

.logo-text {
  font-size: 1.3em;
  font-family: var(--font-sans);
  font-weight: 500;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; /* Center vertically in viewport */
}

.two-sections {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top; /* Center vertically in viewport */
  padding: 40px;
  gap: 40px;
}


.left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.left h1 {
  font-family: var(--font-main);
  font-size: 4em;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}

.right p {
  font-size: 1.2em;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-size: 1.2em;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: #eee;
}

.footer {
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
  font-size: 1em;
  color: var(--muted);
  min-height: 40px;
}

/* Responsive styles */
@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .left h1 {
    font-size: 2.5em;
  }
  .right {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 24px 16px 0 16px;
    justify-content: center;
  }
  .logo {
    justify-content: center;
    width: 100%;
  }
  .main-content {
    flex: 1;
    flex-direction: column;
    align-items: right;
    justify-content: right;
    padding: 0 16px;
    gap: 0;
    min-height: calc(100vh - 120px);
    text-align: center;
  }

  .two-sections {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    padding: 0 16px;
    gap: 0;
    min-height: calc(100vh - 120px);
    text-align: center;
  }

  .left {
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 0;
    height: 40vh;
    display: flex;
  }
  .left h1 {
    font-size: 2.4em;
    margin: 0 auto 16px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
  }
  .right {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    max-width: 100%;
  }
  .right p {
    font-size: 1em;
    margin-bottom: 24px;
  }
  .cta-btn {
    margin: 0 auto 32px auto;
    font-size: 1.1em;
    padding: 14px 24px;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
    font-size: 0.95em;
  }
}