
  /* Base styles */
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  header {
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  header h1 {
    margin: 0;
    font-size: 2.2rem;
  }
  header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
  }
  section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  h2 {
    margin-top: 0;
  }
  .cta-button {
    display: inline-block;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
  }
  .cta-button:hover {
    opacity: 0.9;
  }
    .container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  label {
    display: block;
    margin-top: 15px;
  }
  input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  button {
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
  }
  
	
.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  text-align: center;
}

  button:hover {
    opacity: 0.9;
  }

  /* Example page-specific colors (use class or id on body or header) */
  .green-theme header {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
  }
  .green-theme h2, .green-theme .cta-button, .green-theme button {
    background: #2e7d32;
  }

  .pink-theme header {
    background: linear-gradient(45deg, #ad1457, #f06292);
  }
  .pink-theme h2, .pink-theme .cta-button, .pink-theme button {
    background: #ad1457;
  }

  .purple-theme header {
    background: linear-gradient(45deg, #6a1b9a, #9c27b0);
  }
  .purple-theme h2, .purple-theme .cta-button, .purple-theme button {
    background: #6a1b9a;
  }

  .orange-theme header {
    background: linear-gradient(45deg, #ef6c00, #ff9800);
  }
  .orange-theme h2, .orange-theme .cta-button, .orange-theme button {
    background: #ef6c00;
  }

  .teal-theme header {
    background: linear-gradient(45deg, #00796b, #26a69a);
  }
  .teal-theme h2, .teal-theme .cta-button, .teal-theme button {
    background: #00796b;
  }

  .warm-theme header {
    background: linear-gradient(45deg, #fb8c00, #ffb74d);
  }
  .warm-theme h2, .warm-theme .cta-button, .warm-theme button {
    background: #fb8c00;
  }
