*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  position: relative;
  font-family:'Poppins',sans-serif;
  background: transparent;
}
body::before{
  content:"";
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url('/panditg/img/vedic.jpeg') center/cover no-repeat;
  z-index:-1;
  animation:moveBg 60s linear infinite;
  pointer-events:none;
}
@keyframes moveBg{
  0%{ transform:scale(1) translate(0,0); }
  50%{ transform:scale(1.05) translate(-20px,-20px); }
  100%{ transform:scale(1) translate(0,0); }
}


/* ================= CLEAN PREMIUM HERO ================= */
/* ================= COMPACT SHLOK BAR ================= */

.hero {
  padding: 25px 15px;     /* height choti */
  background: #fff9f2;
  text-align: center;
  border-bottom: 1px solid #f1e3d3;
}

.hero-inner {
  max-width: 1200px;      /* navbar width ke equal */
  margin: auto;
}

/* SAME SMALL FONT SIZE */
.hero h1,
.hero p {
  font-size: 16px;        /* small & compact */
  line-height: 1.6;
  margin: 0;
}

/* Sanskrit */
.hero h1 {
  color: #c85f1a;
  font-weight: 500;
  margin-bottom: 6px;     /* thoda gap */
}

/* Hindi */
.hero p {
  color: #555;
  font-weight: 400;
}

/* Responsive */
@media (max-width:768px){
  .hero {
    padding: 20px 12px;
  }

  .hero h1,
  .hero p {
    font-size: 14px;
  }
}







/* ================= SERVICES ================= */
/* ================= SERVICES ================= */

.services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding:40px 40px;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  margin-bottom:0; /* remove bottom space */
}

/* CARD */
.service-card{
  position:relative;
  height:420px; /* Mahavastu style height */
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  transition:.4s ease;
}

/* DARK OVERLAY */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:transparent;
  transition:.4s;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-card:hover::before{
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

/* CONTENT */
.service-overlay{
  position:relative;
  color:#fff;
  padding:25px;
  z-index:2;
}

.service-overlay h3{
  font-size:24px;
  margin-bottom:10px;
}

.service-overlay p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:10px 24px;
  border-radius:30px;
  background:#e21c2a;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:.3s;
}

.btn:hover{
  background:#c91622;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
  .services{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .services{
    grid-template-columns:1fr;
    padding:40px 20px;
    
  }

  .service-card{
    height:320px; /* mobile height like Mahavastu */
  }
}

/* REMOVE EXTRA SPACE BELOW SERVICES */

.services{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}

.service-card{
  margin-bottom:0 !important;
}

/* If next section has margin */
.services + section{
  margin-top:0 !important;
}

/* Mobile specific fix */
@media(max-width:768px){

  .services{
    padding-bottom:0 !important;
  }

  .service-card{
    margin-bottom:15px; /* only small gap between cards */
  }

  .service-card:last-child{
    margin-bottom:0 !important;
  }
}




/* how it works */

.how-it-works {
  padding: 80px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.hiw-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hiw-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 50px;
}

/* STEPS GRID */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP CARD */
.hiw-step {
  background: rgba(255,255,255,0.85);
  padding: 34px 24px;
  border-radius: 18px;
  transition: all 0.3s ease;
}

.hiw-step:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.hiw-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #1e1e1e;
}

.hiw-step p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ICONS */
.hiw-icon {
  width: 54px;
  height: 54px;
  margin: auto;
  border-radius: 14px;
  background-color: #fff3e8;
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
}

/* SVG ICONS */
.icon-search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff5722'%3E%3Cpath stroke-width='2' d='M21 21l-4.35-4.35M16 10a6 6 0 11-12 0 6 6 0 0112 0z'/%3E%3C/svg%3E");
}

.icon-compare {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff5722'%3E%3Cpath stroke-width='2' d='M10 3H5a2 2 0 00-2 2v14a2 2 0 002 2h5M14 3h5a2 2 0 012 2v14a2 2 0 01-2 2h-5M10 3v18M14 3v18'/%3E%3C/svg%3E");
}

.icon-schedule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff5722'%3E%3Cpath stroke-width='2' d='M8 7V3M16 7V3M3 11h18M5 5h14a2 2 0 012 2v13a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2z'/%3E%3C/svg%3E");
}

.icon-review {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff5722'%3E%3Cpath stroke-width='2' d='M11.049 2.927c.3-.921 1.603-.921 1.902 0l2.036 6.26h6.588c.969 0 1.371 1.24.588 1.81l-5.332 3.873 2.036 6.26c.3.921-.755 1.688-1.538 1.118L12 18.348l-5.329 3.9c-.783.57-1.838-.197-1.538-1.118l2.036-6.26-5.332-3.873c-.783-.57-.38-1.81.588-1.81h6.588l2.036-6.26z'/%3E%3C/svg%3E");
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
}

/* pooja section */

/* SECTION */
.popular-puja-section {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.popular-puja-container {
  max-width: 1200px;
  margin: auto;
}

.popular-puja-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 50px;
}

/* GRID */
.popular-puja-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.puja-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.puja-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

/* TEXT */
.puja-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.puja-price {
  font-size: 14px;
  color: #777;
  margin-bottom: 22px;
}

/* BUTTON */
.puja-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ff5722;
  border: 2px solid #ff5722;
  transition: all 0.25s ease;
}

.puja-btn:hover {
  background: #ff5722;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.35);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .popular-puja-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .popular-puja-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .popular-puja-grid {
    grid-template-columns: 1fr;
  }
}


/* location */

/* SECTION */
.pandit-location-section {
  padding: 60px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.pandit-location-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.pandit-location-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.pandit-location-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* GRID */
.pandit-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

/* CARD */
.city-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 34px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.1);
}

.city-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 18px;
}

/* BUTTON */
.city-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #ff5722;
  border: 2px solid #ff5722;
  text-decoration: none;
  transition: all 0.25s ease;
}

.city-btn:hover {
  background: #ff5722;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.35);
}

/* CTA */
.pandit-location-cta {
  margin-top: 10px;
}

.pandit-location-main-btn {
  display: inline-block;
  padding: 14px 38px;
  background: #ff5722;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pandit-location-main-btn:hover {
  background: #e64a19;
  box-shadow: 0 14px 30px rgba(255, 87, 34, 0.45);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pandit-city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .pandit-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .pandit-city-grid {
    grid-template-columns: 1fr;
  }
}

/* why choose us */

/* SECTION */
.pandit-trust-section {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.pandit-trust-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.pandit-trust-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.pandit-trust-subtitle {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 55px;
}

/* GRID */
.pandit-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* CARD */
.pandit-trust-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 40px 26px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pandit-trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

/* ICON */
.trust-icon {
  font-size: 32px;
  color:  #e64a19;
  margin-bottom: 18px;
}

/* TEXT */
.pandit-trust-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.pandit-trust-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .pandit-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .pandit-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pandit-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* FEATURED PANDITS */
.featured-pandits {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.fp-container {
  max-width: 1200px;
  margin: auto;
}

.fp-header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
}

.fp-header p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* GRID */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.fp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}



/* IMAGE WRAPPER */
.fp-image {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* CIRCULAR IMAGE */
.fp-image img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background: #fff;
}


/* BODY */
.fp-body {

  padding: 20px 22px 26px;
  text-align: center;
}

.fp-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* META */
.fp-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  align-items: center;
}

.fp-meta i {
  color: #ff7a18;
  margin-right: 6px;
}

/* RATING */
.fp-rating {
  font-size: 15px;
  font-weight: 600;
  color: #ff9800;
  margin-bottom: 18px;
}

.fp-rating span {
  color: #777;
  font-weight: 500;
}

/* BUTTON */
.fp-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: #ff7a18;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}

.fp-btn:hover {
  background: #e86810;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fp-header h2 {
    font-size: 30px;
  }
}

/* ================= PREMIUM APP FEATURES ================= */

.app-features-section {
  padding: 80px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.app-features-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.app-features-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.app-features-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* GRID */
.app-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* GLASS CARD */
.features-column {
  position: relative;
   min-height: 220px;  /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 35px;
  border-radius: 22px;
  text-align: left;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.3);

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

  transition: all 0.35s ease;
  overflow: hidden;
}

/* HOVER GLOW EFFECT */
.features-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: 0.4s;
}

.features-column:hover::before {
  opacity: 1;
}

/* HOVER */
.features-column:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* COLUMN TITLE */
.features-column-title {
  font-size: 24px;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 30px;
}

/* LIST */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEM */
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}

/* PREMIUM ICON */
.features-list li::before {
  content: "✔";
  position: relative;
  left: 0;
  top: 0;
  flex-shrink: 0;

  width: 22px;
  height: 22px;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff7a18, #ff5722);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: bold;

  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .app-features-grid {
    grid-template-columns: 1fr;
  }
}

/* CUSTOMER REVIEWS SECTION */
.customer-reviews-section {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.customer-reviews-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.reviews-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.reviews-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 60px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}

/* REVIEW CARD */
.review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

/* REVIEW HEADER */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.review-stars {
  font-size: 16px;
  color: #ff9800;
  font-weight: 600;
}

.review-meta {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

/* REVIEW TEXT */
.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* AUTHOR */
.review-author {
  font-size: 14px;
  color: #ff5722;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    text-align: center;
  }

  .review-header {
    flex-direction: column;
    gap: 8px;
  }
}

/* SAFETY, PAYMENTS & COMPLIANCE SECTION */
.safety-payments-section {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.safety-payments-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.safety-payments-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.safety-payments-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 60px;
}

/* GRID */
.safety-payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* CARD */
.safety-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ICON */
.safety-icon {
  font-size: 40px;
  color: #ff5722;
  margin-bottom: 20px;
}

/* CARD TITLE */
.safety-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

/* CARD TEXT */
.safety-card-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .safety-payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .safety-payments-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* ACCORDION */
.faq-accordion {
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1e1e1e;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #fff3e8;
}

.faq-toggle {
  font-size: 22px;
  color: #ff5722;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
  }
}


