@charset "utf-8";
/* CSS Document */

/* Contact Section Styles */
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #121212, #1a1a40);
  color: #fff;
}

.contact-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #81F781; /* Bright green */
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section input,
.contact-section textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-section button {
  padding: 15px;
  background-color: #4a90e2;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: #357ab8;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(180deg, #1a1a40, #121212);
  padding: 50px 20px;
  color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.newsletter h2 {
  font-size: 24px;
  color: #81F781; /* Bright green */
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.newsletter-form input {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  width: 300px;
  max-width: 100%;
}

.newsletter-form button {
  padding: 10px 20px;
  font-size: 16px;
  color: #121212;
  background-color: #81F781;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #6ad568;
}

.newsletter-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-info {
  text-align: left;
}

.contact-info strong {
  font-size: 18px;
  color: #81F781;
}

.divider {
  width: 2px;
  height: 100px;
  background-color: #81F781;
  align-self: center;
}
