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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #1a1a1a, #333);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 20px 10px;
  background: #4a148c;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #e1bee7;
  line-height: 1.6;
}

/* Main Container */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px;
  margin: 0 auto;
}

.text-box {
  background: #2c2c2c;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

textarea {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  background: #1a1a1a;
  color: #fff;
  resize: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

textarea::placeholder {
  color: #9e9e9e;
}

textarea:focus {
  border: 2px solid #4a148c;
  outline: none;
}

.submit-button {
  background: #4a148c;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #6a1b9a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 20, 140, 0.5);
}

/* CTA Section */
.cta-section {
  background: #4a148c;
  padding: 20px;
  text-align: center;
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  textarea {
    height: 200px;
  }

  .cta-content img {
    max-width: 150px;
  }
}
