/* === Contact Page Styles Start === */
.contact-page {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.back-home {
  margin-bottom: 20px;
}

.back-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: #1e3c72;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #163261;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #1e3c72;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2,
.contact-info h2 {
  color: #1e3c72;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form button {
  background-color: #ffd700;
  color: #1e3c72;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: not-allowed;
}

.note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.contact-info ul {
  list-style: none;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 0;
}

.contact-info li strong {
  color: #1e3c72;
}

.lottie-box {
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .lottie-box {
    text-align: center;
  }
}
/* === Contact Page Styles End === */
