* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f1f3d;
  color: #fff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
}

.logo {
	max-width: 500px !important;
	padding-bottom: 20px;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight {
  color: #ff7a33;
  font-size: 20px;
  margin-bottom: 15px;
}

.subtext {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn {
	background: #ff7a33;
	color: #fff;
	padding: 12px 50px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: bold;
	transition: 0.3s;
	font-size: 18px;
}

.btn:hover {
  background: #e66824;
}

.or-text {
  margin-bottom: 15px;
  color: #d1d5db;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #2c3e5a;
  background: #0b1730;
  color: #fff;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c8aa5;
}

.submit-btn {
  width: 150px;
  margin: 10px auto 0;
  cursor: pointer;
  border: none;
}


/*thank you page css*/

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.tcontainer {
  max-width: 500px;
  width: 100%;
}

/* Success Icon */
.ticon {
  width: 80px;
  height: 80px;
  background: #ff7a33;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Title */
.thead {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 15px;
}

/* Message */
.tmessage {
  font-size: clamp(16px, 3vw, 18px);
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Buttons */
.tbuttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tbtn {
  background: #ff7a33;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  min-width: 150px;
}

.tbtn:hover {
  background: #e66824;
}


/* Small devices (phones) */
@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}