body {
      margin: 0;
      padding: 0;
      background: #0f0f0f;
      color: #ffffff;
      font-family: 'Helvetica Neue', sans-serif;
    }
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 80vh;
      padding: 2rem;
      background: #0f0f0f;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
      max-width: 600px;
      margin-bottom: 2rem;
    }
    .cta-button {
      background: #ffffff;
      color: #000000;
      padding: 1rem 2rem;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
    }
    .section {
      padding: 4rem 2rem;
      background: #1a1a1a;
      text-align: center;
    }
    .section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .section p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.125rem;
    }
    .quotes {
      background: #121212;
      padding: 4rem 2rem;
      text-align: center;
    }
    .quote {
      font-style: italic;
      font-size: 1.25rem;
      max-width: 600px;
      margin: 1.5rem auto;
      color: #aaa;
    }
    .subscribe-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      max-width: 400px;
      margin: 2rem auto;
    }
    .subscribe-form input[type="email"] {
      padding: 0.75rem 1rem;
      width: 100%;
      font-size: 1rem;
      border: none;
      border-radius: 4px;
    }
    .subscribe-form button {
      background-color: #ffffff;
      color: #000000;
      padding: 0.75rem 2rem;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
    }
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .modal-content {
      background: #1a1a1a;
      padding: 2rem;
      max-width: 600px;
      width: 90%;
      text-align: left;
      border-radius: 8px;
    }
    .modal-content h2 {
      margin-top: 0;
    }
    .modal-close {
      margin-top: 2rem;
      background: #ffffff;
      color: #000;
      padding: 0.5rem 1rem;
      border: none;
      cursor: pointer;
    }
    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.875rem;
      color: #666;
    }