/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
  }
  
  /* Header */
  header {
    background: #111;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
  }
  .logo {
    font-size: 20px;
    font-weight: bold;
  }
  nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  section h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  section p {
    font-size: 18px;
    color: #555;
  }
  #features h2,
  #join h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  /* Feature Boxes */
  .feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .feature {
    background: white;
    padding: 20px;
    border-left: 4px solid #2d2dff;
    text-align: left;
  }
  .feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  /* Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
  }
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  textarea {
    height: 100px;
    resize: vertical;
  }
  button {
    background: #2d2dff;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  button:disabled {
    background: #aaa;
    cursor: not-allowed;
  }
  
  /* Toast */
  .toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
  }
  .toast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .toast-content p {
    margin-bottom: 10px;
  }
  .toast-content button {
    background: #2d2dff;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .toast-content button:hover {
    background: #1a1aff;
  }
  .hidden {
    display: none;
  }
  
  /* GDPR Banner */
  .gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 9998;
  }
  .gdpr-banner button {
    margin-left: 15px;
    padding: 6px 12px;
    border: none;
    background: #2d2dff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
  .gdpr-banner button:hover {
    background: #1a1aff;
  }
  
  /* Footer */
  footer {
    background: #eee;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  