
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#contact-19 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
#contact-19.no-bg-image {
  background-color: #343a40;
}
#contact-19 .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#contact-19 .container {
  position: relative;
  z-index: 2;
}
#contact-19 .contact-form-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 35px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#contact-19 .form-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}
#contact-19 .form-card-subtitle {
  font-size: 1rem;
  color: #5a677d;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}
#contact-19 .form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}
#contact-19 .form-control {
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.95rem;
  background-color: #fff;
  border: 1px solid #ced4da;
}
#contact-19 .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  background-color: #fff;
}
#contact-19 textarea.form-control {
  resize: vertical;
}
#contact-19 .btn-submit-contact {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  padding: 12px 35px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
}
#contact-19 .btn-submit-contact:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
}
#contact-19 .additional-contact-info-area {
  margin-top: 30px;
  text-align: center;
}
#contact-19 .additional-contact-title {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
#contact-19 .additional-contact-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#contact-19 .additional-contact-list li a {
  color: #f8f9fa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
#contact-19 .additional-contact-list li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}
#contact-19 .additional-contact-list li i {
  margin-right: 8px;
  color: #0d6efd;
}



#faq-4 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-4 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-4 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-4 .accordion-button {
  background-color: #ffffff;
  color: #17a2b8;
  border: 1px solid #17a2b8;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#faq-4 .accordion-button.collapsed {
  background-color: #ffffff;
  color: #17a2b8;
}
#faq-4 .accordion-button:not(.collapsed) {
  background-color: #17a2b8;
  color: #ffffff;
}
#faq-4 .accordion-body {
  padding: 20px;
  background-color: #e9ecef;
  border-left: 2px solid #17a2b8;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



#call-to-action-5 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#call-to-action-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#call-to-action-5 .content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}
#call-to-action-5 h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease;
}
#call-to-action-5 p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease;
}
#call-to-action-5 .btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  animation: fadeInUp 1.6s ease;
}
#call-to-action-5 .btn:hover {
  transform: scale(1.1);
  background-color: #218838;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


