:root {
  --black: #111111;
  --white: #ffffff;
  --gray-medium: #757575;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  z-index: 100;
}

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

.header-content {
  flex: 1;
  text-align: center;
}

.site-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--black);
  text-align: center;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.site-disclaimer {
  font-size: 11px;
  color: var(--gray-medium);
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--black);
  transition: all 0.2s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.share-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-50%) scale(1.1);
}

.share-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.link-copied-modal {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background-color: var(--black);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.link-copied-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.link-copied-modal p {
  margin: 0;
  letter-spacing: 0.5px;
}

.hero {
  width: 100%;
  padding: 40px;
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
  max-width: 1100px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 48px;
  color: var(--black);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-medium);
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 24px 0;
  max-width: 800px;
}

.hero-compensation {
  font-size: 24px;
  color: var(--black);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 48px 0;
  max-width: 800px;
}

.cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-btn {
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background-color: var(--black);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.cta-btn:active {
  transform: scale(0.98);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateY(2px);
}

.scroll-indicator svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.link-btn {
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  background-color: var(--white);
  border: 2px solid var(--black);
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.link-btn:hover {
  background-color: var(--black);
  color: var(--white);
  transform: scale(1.05);
}

.link-btn:active {
  transform: scale(0.98);
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 56px;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-compensation {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-btn,
  .link-btn {
    font-size: 14px;
    padding: 18px 40px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }

  .site-title {
    font-size: 14px;
  }

  .share-btn {
    padding: 6px;
  }

  .share-btn svg {
    width: 18px;
    height: 18px;
  }

  .link-copied-modal {
    top: 80px;
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero {
    padding: 24px;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-compensation {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .scroll-indicator {
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
  }

  .scroll-indicator svg {
    width: 20px;
    height: 20px;
  }
}

.compensation-section {
  background-color: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid #e5e5e5;
}

.compensation-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
}

.compensation-intro {
  font-size: 20px;
  color: var(--gray-medium);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.compensation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.compensation-item {
  text-align: center;
  padding: 40px 24px;
}

.compensation-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.compensation-desc {
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.6;
}

.compensation-note {
  font-size: 14px;
  color: var(--gray-medium);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

.why-matters-section {
  background-color: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid #e5e5e5;
}

.why-matters-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-item {
  padding: 0 20px;
}

.reason-number {
  font-size: 72px;
  font-weight: 900;
  color: #e5e5e5;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.reason-item h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 1.3;
}

.reason-item p {
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.7;
}

.facilities-list {
  background-color: var(--gray-light);
  padding: 100px 0;
}

.facilities-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.facilities-list h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
}

.facilities-intro {
  font-size: 18px;
  color: var(--gray-medium);
  margin-bottom: 60px;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.facilities-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.facility-card {
  background-color: var(--white);
  padding: 12px 20px;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.facility-card:hover {
  background-color: var(--gray-light);
}

.facility-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--black);
  flex: 0 0 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.facility-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.facility-location {
  font-size: 13px;
  color: var(--gray-medium);
  flex: 0 0 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.facility-contacts {
  font-size: 12px;
  color: var(--gray-medium);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.facility-contact {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.facility-contact:hover {
  text-decoration: underline;
}

.no-contact {
  color: #ccc;
  font-style: italic;
}

.facility-reviews {
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 80px;
  text-align: right;
  text-decoration: none;
  display: inline-block;
}

.facility-reviews:hover {
  text-decoration: underline;
  color: #0066cc;
}

@media (max-width: 768px) {
  .compensation-section {
    padding: 60px 0;
  }

  .compensation-section h2 {
    font-size: 36px;
  }

  .compensation-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .compensation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compensation-amount {
    font-size: 48px;
  }

  .compensation-desc {
    font-size: 15px;
  }

  .why-matters-section {
    padding: 60px 0;
  }

  .why-matters-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reason-number {
    font-size: 56px;
  }

  .reason-item h3 {
    font-size: 20px;
  }

  .reason-item p {
    font-size: 15px;
  }

  .facilities-list {
    padding: 60px 0;
  }

  .facilities-list h2 {
    font-size: 36px;
  }

  .facilities-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .facilities-grid {
    gap: 0;
  }

  .facility-card {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .facility-card h3 {
    flex: none;
    width: 100%;
    font-size: 12px;
    line-height: 1.3;
  }

  .facility-info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    width: 100%;
  }

  .facility-location {
    font-size: 11px;
    flex: 1 1 auto;
  }

  .facility-contacts {
    font-size: 10px;
    flex: 1 1 100%;
  }

  .facility-reviews {
    font-size: 11px;
    text-align: left;
    flex: 0 0 auto;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .facilities-container {
    padding: 0 16px;
  }

  .facilities-list h2 {
    font-size: 28px;
  }
}

.disclaimer-section {
  background-color: var(--white);
  padding: 80px 0;
  border-top: 1px solid #e5e5e5;
}

.disclaimer-section h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.disclaimer-content strong {
  color: var(--black);
  font-weight: 700;
}

.disclaimer-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }

  .disclaimer-section h3 {
    font-size: 28px;
  }

  .disclaimer-content p {
    font-size: 13px;
  }
}

.contact-form-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-form-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
}

.form-intro {
  font-size: 16px;
  color: var(--gray-medium);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.intake-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  background-color: var(--white);
  transition: border-color 0.2s ease;
  font-family: inherit;
  color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-wrapper {
  margin: 24px 0 32px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 12px;
  color: var(--gray-medium);
  line-height: 1.5;
}

.submit-form-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background-color: var(--black);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-form-btn:hover:not(:disabled) {
  background-color: #333333;
  transform: scale(1.02);
}

.submit-form-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.submit-form-btn:disabled {
  background-color: #999999;
  cursor: not-allowed;
}

.form-message {
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

footer {
  background-color: var(--black);
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-links .separator {
  color: var(--white);
  opacity: 0.5;
  margin: 0 12px;
  font-size: 13px;
}

.footer-text {
  font-size: 12px;
  color: var(--white);
  margin: 0;
  font-weight: 400;
  opacity: 0.8;
}

@media (max-width: 768px) {
  footer {
    text-align: left;
    padding: 32px 24px;
  }

  .footer-links {
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-links .separator {
    font-size: 12px;
  }

  .footer-text {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-section h2 {
    font-size: 28px;
  }

  .form-intro {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .submit-form-btn {
    font-size: 13px;
    padding: 14px 28px;
  }
}

.legal-page {
  padding: 120px 40px 80px;
  min-height: 100vh;
  background-color: var(--white);
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--black);
  text-align: center;
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--gray-medium);
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.legal-page section {
  margin-bottom: 48px;
}

.legal-page section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--black);
  letter-spacing: -0.3px;
}

.legal-page section h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--black);
}

.legal-page section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 16px;
}

.legal-page section ul {
  margin: 16px 0 16px 24px;
  padding: 0;
}

.legal-page section li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 8px;
}

.legal-page strong {
  color: var(--black);
  font-weight: 700;
}

.legal-acknowledgment {
  background-color: #f8f8f8;
  border-left: 4px solid var(--black);
  padding: 24px 28px;
  margin: 60px 0 40px;
}

.legal-acknowledgment p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 24px 60px;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .legal-page .last-updated {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .legal-page section {
    margin-bottom: 36px;
  }

  .legal-page section h2 {
    font-size: 20px;
  }

  .legal-page section h3 {
    font-size: 16px;
  }

  .legal-page section p,
  .legal-page section li {
    font-size: 14px;
  }

  .legal-acknowledgment {
    padding: 20px 16px;
    margin: 40px 0 32px;
  }

  .legal-acknowledgment p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 80px 16px 40px;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .legal-page section h2 {
    font-size: 18px;
  }

  .legal-page section ul {
    margin-left: 16px;
  }
}
