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

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
  animation: fadeIn 0.7s ease-out;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 1.8em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.main-content {
  padding: 40px;
}

h1,
h2 {
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: center;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1em;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
  outline: none;
  transform: scale(1.02);
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.contact-form button:active {
  transform: scale(0.97);
}

/* Success Message */
#successMessage {
  display: none;
  text-align: center;
  color: #28a745;
  font-weight: 600;
  margin-top: 10px;
  animation: fadeIn 0.6s ease-in-out;
}

/* Contact Details */
.contact-details {
  margin-top: 30px;
  text-align: center;
}

.contact-details h2 {
  margin-bottom: 15px;
  color: #444;
}

.contact-item {
  margin: 10px 0;
  font-size: 1.1em;
  color: #333;
}

.contact-item i {
  margin-right: 10px;
  color: #667eea;
}

footer {
  background: linear-gradient(135deg, #3b56d0 0%, #630eb7 100%);
  color: white;
  text-align: center;
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-content p {
  color: white;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: white;
  font-size: 1.3em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  transform: scale(1.2);
  color: #ffd700;
}
