/* Base Styles */
body {
  background-color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0;
  padding: 20px;
  color: #00ff00;
}

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

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 60px;
}

.header img {
  display: block;
  margin: 0 auto 30px;
  max-width: 400px;
  height: auto;
  border: 5px solid #00ff00;
  border-radius: 4px;
}

h1 {
  font-size: 48px;
  font-weight: normal;
  margin: 0 0 20px;
  color: #00ff00;
  text-shadow: 3px 3px 0 #000;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 20px;
  font-style: italic;
  color: #00ff00;
  text-shadow: 1px 1px 0 #000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Sections */
.section {
  margin-bottom: 60px;
  padding: 30px;
  background-color: rgba(0, 255, 0, 0.05);
  border: 1px solid #00ff00;
  border-radius: 4px;
}

.section h2 {
  font-size: 32px;
  margin: 0 0 20px;
  color: #00ff00;
  text-shadow: 2px 2px 0 #000;
  text-align: center;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: center;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #00ff00;
  text-shadow: 1px 1px 0 #000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #000;
  border: 2px solid #00ff00;
  border-radius: 4px;
  color: #00ff00;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

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

.turnstile-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #00ff00;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  font-family: Georgia, 'Times New Roman', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #00cc00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.submit-btn:disabled {
  background-color: #006600;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Form Messages */
.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: rgba(0, 255, 0, 0.2);
  border: 2px solid #00ff00;
  color: #00ff00;
}

.form-message.error {
  background-color: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff0000;
  color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 36px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section p,
  .subtitle {
    font-size: 16px;
  }

  .header img {
    max-width: 300px;
  }

  .section {
    padding: 20px;
  }
}
