/* GLOBAL SITE STYLING */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
header {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-primary {
  background: #004aad;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #003580;
}

/* THANK YOU PAGE ONLY */
.thankyou-body {
  background: linear-gradient(135deg, #004aad, #007bff);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

.thankyou-container {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

.thankyou-container h1 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-container p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
  color: #444;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
