.btn-primary {
  background-color: #fe8e4f !important;
  border-color: #fe8e4f !important;
}

.btn-primary:hover {
  background-color: #e5773d !important;
  border-color: #e5773d !important;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafb;
  color: #333;
}
header {
  background: #14606e;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
header h1 {
  margin: 0rem 0 0;
  font-size: 3rem;
}
header p {
  margin: 0.75rem auto 0;
  font-size: 1.25rem;
  max-width: 800px;
}
header img.logo {
  width: 270px;
}
.custom-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.about {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}
.about h2 {
  text-align: center;
  margin-top: 0;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.feature {
  background: #fff;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.feature img {
  max-width: 100px;
  margin-bottom: 1rem;
}
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.custom-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 320px;
  padding: 2rem;
  text-align: center;
}
.custom-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #14606e;
}
.price {
  font-size: 2rem;
  margin: 1rem 0;
  color: #fe8e4f;
}
.features-list {
  text-align: left;
  margin: 1rem 0;
}
.features-list li {
  margin: 0.5rem 0;
}

/* Modal */

/* Testimonials */
.testimonials {
  margin: 3rem 0;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background: #fff;
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.testimonial p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.testimonial h4 {
  margin-top: 1rem;
  font-weight: bold;
  color: #14606e;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  margin: 3rem 0;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h4 {
  margin-bottom: 0.5rem;
  color: #fe8e4f;
}
.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 3rem 0 2rem;
  color: #14606e;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fe8e4f;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  border-color: #14606e;
  box-shadow: 0 0 6px rgba(20, 96, 110, 0.2);
  outline: none;
}

#submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.price {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: #fe8e4f;
  font-weight: bold;
}
.price .per {
  font-size: 1rem;
  font-weight: normal;
  color: #555;
}

.billing {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

html {
  scroll-behavior: smooth;
}

.btn-close {
  position: relative;
  z-index: 1056;
}
