
/* Global Style Guide - style.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: black;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}

.content-column {
  margin: auto 0;
  padding-left: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: max-content;
}

.nav {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  margin-left: 5px;
}

.nav a:hover {
  color: #ccc;
}

.nav img {
  width: 20px;
  height: 20px;
}

.logo {
  font-size: 3rem;
  letter-spacing: 0.165em;
  white-space: nowrap;
}

.intro h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

/* Buttons */
.button,
.cta-button,
.cta button,
input[type="submit"],
button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
}

/* Layout */
main {
  margin-left: 50%;
  padding: 120px 40px;
  box-sizing: border-box;
  max-width: 900px;
}

section h1 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}

.faqs {
  margin-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  header {
    position: relative;
    height: auto;
    padding: 30px 20px;
    text-align: center;
    justify-content: center;
  }

  .content-column {
    padding-left: 0;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .logo {
    font-size: 2.2rem;
  }

  .intro h2 {
    font-size: 1.2rem;
  }

  main {
    margin: 0;
    padding: 40px 20px;
  }
}
