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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
}

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

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
}

/* Logo */
.logo {
  width: 128px;
  height: 128px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.logo-text {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  font-style: italic;
}

/* Headline */
.headline {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

/* Steps */
.steps {
  text-align: center;
  margin-bottom: 40px;
}

.steps p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
}

/* Sign Up Button */
.signup-btn {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 64px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.signup-btn:hover {
  background-color: #333333;
}

/* Availability */
.availability {
  text-align: center;
  margin-bottom: 48px;
}

.availability-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.availability p {
  color: #000000;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  max-width: 400px;
}

.faq-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}

.accordion-trigger:hover {
  background-color: #f3f4f6;
}

.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding: 0 16px 16px 16px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #f3f4f6;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 480px) {
  .headline {
    font-size: 18px;
  }
  
  .steps p {
    font-size: 16px;
  }
  
  .signup-btn {
    padding: 14px 48px;
    font-size: 18px;
  }
}
