
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(0, 51, 102, 0.5) 0%, /* deep professional blue highlight */
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 51, 102, 0.5) 0%,
      transparent 20%
    ),
    linear-gradient(to bottom, #0d1a33, #001f3f);
  background-attachment: fixed;
  background-size: cover;
  color: #f5f5f5; /* excellent contrast on dark blue */
}

.dark-header {
  background: #1a1a1a;
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}



.logo-wrapper img {
  width: 60px;
  height: 60px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  z-index: 1;
}

.logo-wrapper:hover img {
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px rgba(0, 82, 255, 0.4)) brightness(1.05);
}


.logo-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 210, 255, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s ease-out;
  z-index: 0;
  border-radius: 50%;
}

.logo-wrapper:hover::before {
  transform: translate(-50%, -50%) scale(1.8);
  opacity: 0.6;
}


@media (max-width: 768px) {
  .logo-wrapper:hover img {
    transform: scale(1.2);
  }
  .logo-wrapper:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
  }
}


.brand-name {
  background: linear-gradient(135deg, #00f2fe 0%, #0052ff 100%);
  text-shadow: 0 1px 4px rgba(0, 82, 255, 0.15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: block;
  padding-bottom: 8px;
  margin-bottom: 2px;
  line-height: 1.2;

  animation: gentle-pulse 2s ease-in-out infinite,
    float-effect 3s ease-in-out infinite;
  transform: translateZ(0);
}


@keyframes gentle-pulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.3), 0 0 20px rgba(0, 194, 255, 0.1),
      0 4px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.3), 0 0 30px rgba(0, 194, 255, 0.2),
      0 6px 12px rgba(0, 0, 0, 0.15);
  }
}

@keyframes float-effect {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}


.brand-name::after {
  animation: underline-glow 2s ease-in-out infinite;
}

@keyframes underline-glow {
  0%,
  100% {
    opacity: 0.8;
    width: 80%;
  }
  50% {
    opacity: 1;
    width: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 210, 255, 0.9) 50%,
      transparent 100%
    );
  }
}


@keyframes pulse-glow {
  0%,
  100% {
    text-shadow: 0 1px 4px rgba(0, 82, 255, 0.15);
  }
  50% {
    text-shadow: 0 1px 6px rgba(0, 82, 255, 0.2);
  }
}


.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: auto;
}


.brand-tagline {
  color: #fafafa;
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  display: block;
  padding: 2px 0 4px 0;
  margin-top: -2px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  text-align: left;
}


.brand-tagline::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd700,
    #ffd700,
    transparent
  );
  transform: translateX(-50%);
  transition: width 0.4s ease;
}


.brand-tagline:hover {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.5);
}

.brand-tagline:hover::before {
  width: 100%;
}


@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.brand-tagline {
  animation: float 4s ease-in-out infinite;
}


@media (max-width: 768px) {
  .brand-name {
    font-size: 1.4rem;
    padding-bottom: 6px;
  }

  .brand-tagline {
    font-size: 0.75rem;
    padding-bottom: 3px;
  }
}

/* Navigation */
.navigation {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-item {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
  color: #4fc3f7;
}

.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4fc3f7, #29b6f6);
  transition: width 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  width: 100%;
}

.nav-item.active {
  color: #4fc3f7;
  font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #4fc3f7;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    padding: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }

  .navigation.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .logo-brand {
    gap: 0.8rem;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .logo-wrapper img {
    width: 40px;
    height: 40px;
  }
}


.content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-container {
  flex: 1;
  min-width: 300px;
  padding: 0.85rem;
}

.welcome-container h2 {
  color: #4fc3f7;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.welcome-text {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.welcome-subtext {
  color: #ffd700;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  background: linear-gradient(135deg, #00f2fe 0%, #0052ff 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.4);
}

.video-container {
  flex: 1;
  min-width: 300px;
  margin-top: -10px;
}

.video-container video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    padding: 2rem 0;
  }

  .welcome-container {
    order: 1;
    text-align: center;
  }

  .video-container {
    order: 2;
  }

  .welcome-container h2 {
    font-size: 1.8rem;
  }
}


.welcome-container {
  margin-top: -60px;
  z-index: 10;
  transition: margin-top 0.3s ease;
}


@media (max-width: 768px) {
  .welcome-container {
    margin-top: -20px;
  }
}

.welcome-heading {
  margin-bottom: 2rem;
}

.welcome-greet {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  animation: fadeIn 1s ease-out;
  position: relative;
  top: 10px;
}

.welcome-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2fe 0%, #0052ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0, 82, 255, 0.3);
  animation: slideIn 0.8s ease-out;
}

.seva-highlight {
  color: #ffd700;
  background-clip: initial;
  -webkit-background-clip: initial;
  background: transparent;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.welcome-message {
  position: relative;
  font-size: 1.2rem;
  color: #e0e0e0;
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 3px solid #4fc3f7;
  top: -10px; 
}

.welcome-quote {
  color: #ffffff;
  font-style: italic;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  padding: 0.8rem;
  background: rgba(8, 34, 86, 0.7);
  border-radius: 8px;
  display: inline-block;
  animation: fadeIn 1.5s ease-out;
  position: relative;
  top: -5px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


@media (max-width: 768px) {
  .welcome-container h2 {
    font-size: 2.5rem;
  }

  .welcome-message {
    font-size: 1.2rem;
  }
}


.whatsapp-contact {
  position: relative;
  width: 100%;
  text-align: right;
  margin: -3rem 0 -1.5rem;
  padding-right: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
  top: 20px;
}


.whatsapp-btn i {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-btn i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
  transform: rotate(15deg);
}


@keyframes pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}


.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.whatsapp-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}


@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.whatsapp-btn i {
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover i {
  animation: none;
}


.faq-btn {
  display: inline-flex;
  position: relative;
  top: -20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
}


.testimonials-btn {
  display: inline-flex;
  position: relative;
  top: -20px;
  left: -110px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #2e3ae3, #01050d);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(41, 49, 201, 0.4);
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
}


.faq-btn i,
.testimonials-btn i {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}


.faq-btn:hover,
.testimonials-btn:hover {
  transform: translateY(-5px) scale(1.05);
  animation: none;
}
.faq-btn:hover {
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.6);
}
.testimonials-btn:hover {
  box-shadow: 0 10px 25px rgba(35, 37, 202, 0.6);
}


.buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 1rem 0;
}
.testimonials-btn {
  margin: 0 auto;
}


@media (max-width: 1024px) {
  .buttons-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 2rem 0;
  }

  .faq-btn,
  .testimonials-btn {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    width: 80%;
    max-width: 300px;
  }

  .whatsapp-contact {
    margin: 1rem 0;
    text-align: center;
    padding-right: 0;
  }

  .whatsapp-btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .buttons-container {
    margin: 1.5rem 0;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 90%;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .faq-btn i,
  .testimonials-btn i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 95%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .faq-btn i,
  .testimonials-btn i,
  .whatsapp-btn i {
    font-size: 1rem;
  }
}


@media (max-width: 1024px) {
  .buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    width: 80%;
    max-width: 300px;
  }

  .whatsapp-contact {
    margin: 0;
    text-align: center;
    padding-right: 0;
    width: 100%;
  }

  .whatsapp-btn {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .buttons-container {
    gap: 12px;
    margin: 1.5rem 0;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 90%;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.faq-btn {
  margin-top: -10px;
}

@media (max-width: 480px) {
  .buttons-container {
    gap: 10px;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 95%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.nav-item-contact {
  position: relative;
}

.contact-dropdown {
  position: absolute;
  margin-top: 5px;
  top: 100%;
  right: -50px;
  width: 220px;
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #333;
}


@media (min-width: 768px) {
  .contact-dropdown {
    margin-top: 8px;
  }
}


@media (min-width: 1024px) {
  .contact-dropdown {
    margin-top: 12px;
  }
}

.contact-dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 10px;
  transform: translateX(0);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #1e1e1e transparent;
}


.nav-item-contact:hover .contact-dropdown {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 768px) {
  .nav-item-contact:hover .contact-dropdown {
    transform: translateX(-95px) translateY(8px);
  }
}


@media (max-width: 768px) {
  .nav-item-contact.hover .contact-dropdown {
    opacity: 1;
    visibility: hidden;
    transform: translateX(-55px) translateY(8px);
  }

  .nav-item-contact {
    width: 100%;
    text-align: center;
  }

  .nav-item-contact .nav-item {
    display: block;
    padding: 1rem 0;
  }
}

.contact-dropdown::before {
  right: 35%;
  transform: translateX(50%);
}

.contact-card h4 {
  color: #4fc3f7;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.contact-card p {
  color: #e0e0e0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-card i {
  color: #ffd700;
  width: 20px;
  text-align: center;
}

.faq-container {
  max-width: 1000px;
  margin: 1.5rem auto;
  padding: 0 1.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e2e8f0;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.faq-header p {
  font-size: 1rem;
  color: #a0aec0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.search-container {
  display: flex;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#faq-search {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid #2d3748;
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #1a202c;
  color: #e2e8f0;
}

#faq-search:focus {
  outline: none;
  border-color: #4fd1c5;
  box-shadow: 0 0 0 2px rgba(79, 209, 197, 0.25);
}

.search-btn {
  background-color: #4fd1c5;
  color: #1a202c;
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.search-btn:hover {
  background-color: #38b2ac;
}

.faq-accordion {
  margin-bottom: 2.5rem;
}

.faq-item {
  border: 1px solid #2d3748;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #2d3748;
}

.faq-item:hover {
  border-color: #4a5568;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1rem 1.5rem;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(74, 85, 104, 0.3);
}

.faq-question h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  color: #a0aec0;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}

.faq-answer-content {
  padding: 0 1.5rem;
  line-height: 1.6;
  color: #a0aec0;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: #4fd1c5;
  box-shadow: 0 4px 16px rgba(79, 209, 197, 0.15);
}

.faq-item.active .faq-question {
  background-color: rgba(79, 209, 197, 0.1);
}

.faq-item.active .faq-question h3 {
  color: #4fd1c5;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  color: #4fd1c5;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 0;
}

.faq-contact-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid #4a5568;
}

.faq-contact-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.no-results {
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
  color: #a0aec0;
  display: none;
  background-color: #2d3748;
  border-radius: 8px;
  border: 1px solid #4a5568;
}

.contact-btn {
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  color: #1a202c;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 0.9rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 0.8rem 1rem;
  }

  .faq-answer-content {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0.8rem 0;
  }
}
