 
 .hign-menu {
        color: #fff !important;
  padding: 8px 36px !important;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(270deg, #ff1e56, #ffac41, #ff4b2b, #ff1e56);
  background-size: 600% 600%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(255, 30, 86, 0.5);
  transition: all 0.35s ease-in-out;
  cursor: pointer;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

 .offer-banner {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            font-weight: 600;
            display: inline-block;
            padding: 2px 16px;
           background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
        }
        .offer-red, .offer-normal {
            color: #ffffff;
        }
/* Features Section Styles */
.features-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f9f7ff 0%, #f0ebff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(103, 71, 199, 0.05);
  z-index: 0;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(103, 71, 199, 0.05);
  z-index: 0;
}

.features-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(103, 71, 199, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #6747c7 0%, #8c6bdb 100%);
  transition: height 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(103, 71, 199, 0.2);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover h4,
.feature-card:hover p {
  color: white;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon {
  color: white;
  transform: scale(1.1);
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 71, 199, 0.1);
  border: 2px solid rgba(103, 71, 199, 0.15);
  transition: all 0.3s ease;
}

.feature-icon {
  color: #6747c7;
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.75rem);
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.feature-card p {
  color: #666;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-section {
    padding: 3rem 1rem;
  }
  
  .features-grid {
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1rem;
  }
  
  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
/* Senderdp Choice Section Styles */
.senderdp-choice {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f6ff 100%);
  position: relative;
  overflow: hidden;
}

.senderdp-choice-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.senderdp-choice-heading {
  text-align: center;
  font-size: clamp(1.75rem, 2.9vw + 0.5rem, 3.5rem);
  margin-bottom: 1rem;
  color: #222;
  position: relative;
  padding-bottom: 1.5rem;
}

.senderdp-choice-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6747c7, #9c82e0);
  border-radius: 2px;
}

.senderdp-choice-subheading {
  text-align: center;
  font-size: clamp(1rem, 0.9vw + 0.35rem, 1.25rem);
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.senderdp-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.senderdp-choice-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(103, 71, 199, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 71, 199, 0.1);
}

.senderdp-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 71, 199, 0.15);
}

.senderdp-choice-card:hover::before {
  height: 100%;
}

.senderdp-choice-icon-container {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 71, 199, 0.1);
  transition: all 0.3s ease;
}

.senderdp-choice-card:hover .senderdp-choice-icon-container {
  background: rgba(103, 71, 199, 0.15);
  transform: scale(1.05);
}

.senderdp-choice-icon {
  color: #6747c7;
}

.senderdp-choice-card h3 {
  font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.senderdp-choice-card:hover h3 {
  color: #6747c7;
}

.senderdp-choice-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .senderdp-choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  
  .senderdp-choice-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .senderdp-choice {
    padding: 3rem 1rem;
  }
  
  .senderdp-choice-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .senderdp-choice-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .senderdp-choice-card {
    padding: 1.75rem 1.25rem;
  }
  
  .senderdp-choice-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }
}
/* Senderdp Perfect Section Styles */
.senderdp-perfect {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
.senderdp-perfect-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.senderdp-perfect-heading {
  text-align: center;
  font-size: clamp(1.75rem, 2.9vw + 0.5rem, 3.25rem);
  margin-bottom: 1rem;
  color: #222;
  position: relative;
  padding-bottom: 1.5rem;
}

.senderdp-perfect-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6747c7, #9c82e0);
  border-radius: 2px;
}

.senderdp-perfect-subheading {
  text-align: center;
  font-size: clamp(1rem, 0.9vw + 0.35rem, 1.25rem);
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.senderdp-perfect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.senderdp-perfect-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(103, 71, 199, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(103, 71, 199, 0.1);
  position: relative;
  overflow: hidden;
}
.senderdp-perfect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 71, 199, 0.15);
}

.senderdp-perfect-card:hover::before {
  height: 100%;
}

.senderdp-perfect-icon {
  width: 70px;
  height: 70px;
  margin-right: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 71, 199, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.senderdp-perfect-card:hover .senderdp-perfect-icon {
  background: rgba(103, 71, 199, 0.15);
  transform: scale(1.05);
}

.senderdp-perfect-icon svg {
  color: #6747c7;
}

.senderdp-perfect-content {
  flex: 1;
}

.senderdp-perfect-card h3 {
  font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.senderdp-perfect-card:hover h3 {
  color: #6747c7;
}

.senderdp-perfect-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .senderdp-perfect-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .senderdp-perfect {
    padding: 3rem 1rem;
  }
  
  .senderdp-perfect-card {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .senderdp-perfect-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
    align-self: center;
  }
}

@media (max-width: 576px) {
  .senderdp-perfect-card {
    padding: 1.75rem 1.25rem;
  }
  
  .senderdp-perfect-icon {
    width: 60px;
    height: 60px;
  }
  
  .senderdp-perfect-grid {
    grid-template-columns: 1fr;
  }
}
/* Senderdp Specs Section Styles */
.senderdp-specs {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #fafbff 0%, #f5f7ff 100%);
  position: relative;
  overflow: hidden;
}

.senderdp-specs::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(103, 71, 199, 0.05);
  z-index: 0;
}

.senderdp-specs-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.senderdp-specs-grid-1 {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap; /* allow items to wrap on smaller screens */
}

/* Make each column take full width on smaller screens */
.senderdp-specs-grid-1 > .senderdp-specs-column {
  flex: 1 1 200px; /* grow, shrink, minimum width */
}

/* Optional: adjust gap and direction for very small screens */
@media (max-width: 768px) {
  .senderdp-specs-grid-1 {
    flex-direction: column;
    gap: 10px;
  }
}
.senderdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.senderdp-specs-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.senderdp-specs-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(103, 71, 199, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(103, 71, 199, 0.1);
  position: relative;
  overflow: hidden;
}

.senderdp-specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #6747c7, #8c6bdb);
  transition: height 0.4s ease;
}

.senderdp-specs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 71, 199, 0.15);
}

.senderdp-specs-card:hover::before {
  height: 100%;
}

.senderdp-specs-icon {
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 71, 199, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.senderdp-specs-card:hover .senderdp-specs-icon {
  background: rgba(103, 71, 199, 0.15);
  transform: scale(1.05);
}

.senderdp-specs-icon svg {
  color: #6747c7;
}

.senderdp-specs-content {
  flex: 1;
}

.senderdp-specs-card h3 {
  font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
  margin-bottom: 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.senderdp-specs-card:hover h3 {
  color: #6747c7;
}

.senderdp-specs-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .senderdp-specs-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .senderdp-specs {
    padding: 3rem 1rem;
  }
  
  .senderdp-specs-card {
    padding: 1.75rem;
    flex-direction: column;
    text-align: center;
  }
  
  .senderdp-specs-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
    align-self: center;
  }
}

@media (max-width: 576px) {
  .senderdp-specs-card {
    padding: 1.5rem 1.25rem;
  }
  
  .senderdp-specs-icon {
    width: 50px;
    height: 50px;
  }
  
  .senderdp-specs-grid {
    grid-template-columns: 1fr;
  }
}
/* Senderdp Testimonials Section Styles */
  .senderdp-testimonials {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #6747c7 0%, #8c6bdb 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .senderdp-testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }
  
  .senderdp-testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }
  
  .senderdp-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .senderdp-testimonials-heading {
    text-align: center;
    font-size: clamp(1.75rem, 2.9vw + 0.5rem, 3.25rem);
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 1.5rem;
  }
  
  .senderdp-testimonials-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #e0d9ff);
    border-radius: 2px;
  }
  
  .senderdp-testimonials-subheading {
    text-align: center;
    font-size: clamp(1rem, 0.9vw + 0.35rem, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
  }
  
  .senderdp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .senderdp-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
 
  .senderdp-testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .senderdp-testimonial-card:hover::before {
    height: 100%;
  }
  
  .senderdp-testimonial-quote {
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  
  .senderdp-testimonial-quote svg {
    color: #ffffff;
  }
  
  .senderdp-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ffffff;
    font-style: italic;
  }
  
  .senderdp-testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .senderdp-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }
  
  .senderdp-testimonial-avatar svg {
    color: #ffffff;
  }
  
  .senderdp-testimonial-info {
    display: flex;
    flex-direction: column;
  }
  
  .senderdp-testimonial-info strong {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
  }
  
  .senderdp-testimonial-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Responsive adjustments */
  @media (max-width: 900px) {
    .senderdp-testimonials-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    
    .senderdp-testimonial-card {
      padding: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .senderdp-testimonials {
      padding: 3rem 1rem;
    }
    
    .senderdp-testimonials-grid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 480px) {
    .senderdp-testimonial-card {
      padding: 1.75rem 1.25rem;
    }
    
    .senderdp-testimonial-author {
      flex-direction: column;
      text-align: center;
    }
    
    .senderdp-testimonial-avatar {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  }
  .senderdp-cta {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f9f9ff 0%, #f1edff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .senderdp-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(103, 71, 199, 0.05);
    z-index: 0;
  }
  
  .senderdp-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(103, 71, 199, 0.05);
    z-index: 0;
  }
  
  .senderdp-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .senderdp-cta-heading {
    font-size: clamp(1.75rem, 2.9vw + 0.5rem, 3rem);
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
  }
  
  .senderdp-cta-subheading {
    font-size: clamp(1rem, 0.9vw + 0.35rem, 1.25rem);
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .senderdp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .senderdp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 2px solid transparent;
  }
  
  .senderdp-cta-btn-primary {
    background: linear-gradient(135deg, #6747c7 0%, #8c6bdb 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(103, 71, 199, 0.3);
  }
  
  .senderdp-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 71, 199, 0.4);
    color: white;
  }
  
  .senderdp-cta-btn-secondary {
    background: transparent;
    color: #6747c7;
    border: 2px solid #6747c7;
  }
  
  .senderdp-cta-btn-secondary:hover {
    background: #6747c7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(103, 71, 199, 0.2);
  }
  
  .senderdp-cta-footer {
    margin-top: 1.5rem;
  }
  
  .senderdp-cta-footer small {
    color: #777;
    font-size: 0.95rem;
  }
  
  .senderdp-cta-footer a {
    color: #6747c7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .senderdp-cta-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6747c7;
    transition: width 0.3s ease;
  }
  
  .senderdp-cta-footer a:hover {
    color: #8c6bdb;
  }
  
  .senderdp-cta-footer a:hover::after {
    width: 100%;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .senderdp-cta {
      padding: 3rem 1rem;
    }
    
    .senderdp-cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .senderdp-cta-btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .senderdp-cta-heading {
      font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
    }
    
    .senderdp-cta-btn {
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }
  }
  /* Senderdp FAQ Section Styles */
.senderdp-faq {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
.senderdp-faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.senderdp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.senderdp-faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(103, 71, 199, 0.08);
  border: 1px solid rgba(103, 71, 199, 0.1);
  transition: all 0.3s ease;
}

.senderdp-faq-item:hover {
  box-shadow: 0 8px 25px rgba(103, 71, 199, 0.12);
}

.senderdp-faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
}

.senderdp-faq-question:hover {
  color: #6747c7;
}

.senderdp-faq-icon {
  transition: transform 0.3s ease;
  color: #6747c7;
}

.senderdp-faq-item.active .senderdp-faq-icon {
  transform: rotate(180deg);
}

.senderdp-faq-item.active .senderdp-faq-question {
  color: #6747c7;
}

.senderdp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.senderdp-faq-item.active .senderdp-faq-answer {
  max-height: 200px;
}

.senderdp-faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid rgba(103, 71, 199, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .senderdp-faq {
    padding: 3rem 1rem;
  }
  
  .senderdp-faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .senderdp-faq-answer p {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .senderdp-faq-question {
    padding: 1rem;
  }
  
  .senderdp-faq-answer p {
    padding: 1rem;
  }
}
/* Send-R-Faq Section Styles front page */
.send-r-faq {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.send-r-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.send-r-faq-heading {
  text-align: center;
  font-size: clamp(1.75rem, 2.9vw + 0.5rem, 3rem);
  margin-bottom: 1rem;
  color: #222;
  position: relative;
  padding-bottom: 1.5rem;
}

.send-r-faq-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6747c7, #9c82e0);
  border-radius: 2px;
}

.send-r-faq-subheading {
  text-align: center;
  font-size: clamp(1rem, 0.9vw + 0.35rem, 1.25rem);
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.send-r-faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.send-r-faq-category {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(103, 71, 199, 0.08);
  border: 1px solid rgba(103, 71, 199, 0.1);
  transition: all 0.3s ease;
}

.send-r-faq-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 71, 199, 0.12);
}

.send-r-faq-category-title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #333;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(103, 71, 199, 0.1);
}

.send-r-faq-category-icon {
  margin-right: 0.75rem;
  color: #6747c7;
}

.send-r-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.send-r-faq-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(103, 71, 199, 0.1);
  transition: all 0.3s ease;
}

.send-r-faq-item:hover {
  border-color: rgba(103, 71, 199, 0.3);
}

.send-r-faq-question {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.send-r-faq-question:hover {
  color: #6747c7;
  background: #f5f5ff;
}

.send-r-faq-icon {
  transition: transform 0.3s ease;
  color: #6747c7;
}

.send-r-faq-item.active .send-r-faq-icon {
  transform: rotate(180deg);
}

.send-r-faq-item.active .send-r-faq-question {
  color: #6747c7;
  background: #f5f5ff;
}

.send-r-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.send-r-faq-item.active .send-r-faq-answer {
  max-height: 200px;
}

.send-r-faq-answer p {
  padding: 1.25rem;
  margin: 0;
  color: #555;
  line-height: 1.6;
  background: #fff;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .send-r-faq-categories {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .send-r-faq {
    padding: 3rem 1rem;
  }
  
  .send-r-faq-category {
    padding: 1.5rem;
  }
  
  .send-r-faq-question {
    padding: 1rem;
  }
  
  .send-r-faq-answer p {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .send-r-faq-category-title {
    font-size: 1.25rem;
  }
  
  .send-r-faq-question {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .send-r-faq-answer p {
    padding: 0.875rem;
  }
}