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

html,
body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
  scroll-behavior: smooth;
}

/* Header */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#siteHeader img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

#siteHeader span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

/* Hero Section */
.hero {
  padding: 140px 1rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #111, #222);
  color: white;
}

.hero img {
  max-width: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Main Content */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1,
h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* CTA Buttons */
.cta-button {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #333;
}

/* CTA Section */
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Email Form */
form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

input[type="email"] {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 60%;
  flex-grow: 1;
}

button[type="submit"] {
  margin-left: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  background-color: #fafafa;
}

.sticky-footer {
  position: sticky;
  bottom: 0;
  background-color: #fff;
  padding: 1rem;
  border-top: 1px solid #ccc;
  text-align: center;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: stretch;
  }

  input[type="email"] {
    width: 100%;
    margin-bottom: 1rem;
  }

  button[type="submit"] {
    margin-left: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #siteHeader {
    flex-direction: column;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  #siteHeader img {
    margin: 0 auto 0.5rem;
  }
}
