/* Hero Header Styling */
.hero-header {
  background: linear-gradient(to right, #005c99, #003366);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

/* Button Styling */
.header-buttons .btn {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffcc00;
  color: black;
}

.btn-secondary {
  background-color: #005c99;
  color: white;
}

.header-buttons .btn:hover {
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  text-align: center;
}

/* Tabs Styling */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #f4f4f4;
  cursor: pointer;
}

.tab-button.active {
  background-color: #005c99;
  color: white;
}

.tab-button:hover {
  background-color: #e6e6e6;
}

/* Tab Content Styling */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Feature Cards Styling */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #f0f8ff;
  /* Light blue shade */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Interactive Text in Get Started Section */
.contact-us-text {
  font-size: 1.5rem;
  color: #333;
  margin: 40px 0;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  /* Increased padding for better spacing */
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.form-group {
  margin-bottom: 20px;
  /* Increased bottom margin for better spacing between fields */
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  /* Increased padding for consistent spacing */
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Button Styling */
button[type="submit"] {
  padding: 12px 20px;
  background-color: #005c99;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button[type="submit"]:hover {
  background-color: #003366;
}

.interactive-text {
  text-align: center;
  font-size: 1.5rem;
  margin: 30px 0;
  padding: 0 20px;
  color: white;
}

.interactive-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
  display: inline-block;
  border-bottom: 2px solid #005c99;
  padding-bottom: 5px;
}