* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f6f9fc;
  color: #0b2545;
  overflow-x: hidden;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  height: auto;
  max-height: 90vh;
  overflow-y: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  font-size: 28px;
  color: #0b2545;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.close-modal:hover {
  background: #f5f5f5;
  color: #333;
}

.modal-form {
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-row:first-child .form-group {
  grid-column: span 1;
}

.form-row:nth-child(2) .form-group {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.form-group label::after {
  content: "*";
  color: #ff4757;
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b5cff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s;
}

.radio-option:hover .radio-label {
  color: #0b5cff;
}

.radio-option input {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s;
  flex-shrink: 0;
}

.radio-option input:checked + .radio-custom {
  border-color: #0b5cff;
  background: #0b5cff;
}

.radio-option input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.radio-label {
  font-size: 15px;
  color: #555;
  transition: color 0.3s;
}

.error-message {
  font-size: 12px;
  color: #ff4757;
  margin-top: 5px;
  min-height: 18px;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.submit-btn {
  background: #0b5cff;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  max-width: 400px;
}

.submit-btn:hover {
  background: #094bd6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 92, 255, 0.3);
}

.form-terms {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

.form-terms a {
  color: #0b5cff;
  text-decoration: none;
}

.form-terms a:hover {
  text-decoration: underline;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .modal-content {
    max-width: 95%;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row:first-child .form-group,
  .form-row:nth-child(2) .form-group {
    grid-column: span 1;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
    align-items: flex-start;
  }
  
  .modal.active {
    align-items: flex-start;
    padding-top: 30px;
  }
  
  .modal-content {
    max-height: 85vh;
    border-radius: 15px;
    overflow-y: auto; 
  }
  
  .modal-header {
    padding: 20px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-bottom: 1px solid #eee;
  }
  
  .modal-header h2 {
    font-size: 22px;
  }
  
  .modal-form {
    padding: 20px;
    overflow-y: visible;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .submit-btn {
    padding: 14px 20px;
    font-size: 15px;
    position: relative;
    bottom: 0;
  }
  
  .form-submit {
    position: relative;
    padding-top: 15px;
    margin-top: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .modal-content {
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-form {
    padding: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
  }
  
  .submit-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .form-terms {
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (min-width: 1201px) {
  .modal-content {
    max-width: 1100px;
  }
}

.hero {
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT */
.left h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.features {
  list-style: none;
}

.features li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon.purple { background: #ece7ff; }
.icon.green { background: #e6fff3; }
.icon.blue { background: #e6f6ff; }

.features strong {
  font-size: 16px;
}

.features p {
  font-size: 14px;
  color: #555;
}

/* TRUST BOX */
.trust-box {
  background: #eef4ff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.stats h3 {
  color: #3b4cca;
}

.stats p {
  font-size: 13px;
  color: #555;
}

.note {
  font-size: 14px;
  margin-top: 10px;
}

/* RIGHT FORM */
.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.form-card span {
  color: #2dbf64;
}

.badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.whatsapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

/* SWITCH */
.switch {
  position: relative;
  width: 45px;
  height: 24px;
}

.switch input {
  opacity: 0;
}

.slider {
  position: absolute;
  background: #ccc;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: .3s;
}

.slider:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: .3s;
}

.switch input:checked + .slider {
  background: #2dbf64;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* BUTTON */
button {
  width: 100%;
  padding: 15px;
  background: #0b5cff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

button:hover {
  background: #094bd6;
}

.button-link {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

.terms a {
  color: #0b5cff;
  text-decoration: none;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .container {
    gap: 30px;
  }
  
  .left h1 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left h1 {
    font-size: 30px;
    text-align: center;
  }
  
  .features li {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-box {
    max-width: 600px;
    margin: 30px auto 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 15px;
  }
  
  .left h1 {
    font-size: 26px;
  }
  
  .stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .stats > div {
    text-align: center;
  }
  
  .badges {
    justify-content: center;
  }
}

/* .advisor-section {
  padding: 80px 40px;
} */

.advisor-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.advisor-left h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.underline {
  width: 60px;
  height: 4px;
  background: #f5a623;
  margin-top: 16px;
}

.advisor-right {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.advisor-right {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.advisor-right::-webkit-scrollbar {
  display: none;
}

/* CARD */
.advisor-card {
  min-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.advisor-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.info h3 {
  font-size: 18px;
  font-weight: 600;
}

.since {
  color: #6b7a90;
  font-size: 14px;
  margin: 4px 0 12px;
}

.info ul {
  list-style: none;
}

.info li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.info li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #6b7a90;
}

/* RESPONSIVE ADVISOR SECTION */
@media (max-width: 1024px) {
  .advisor-container {
    gap: 30px;
  }
  
  .advisor-card {
    min-width: 380px;
  }
}

@media (max-width: 900px) {
  .advisor-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advisor-left h2 {
    font-size: 32px;
    text-align: center;
  }
  
  .underline {
    margin: 10px auto;
  }
  
  .advisor-right {
    gap: 20px;
  }
  
  .advisor-card {
    min-width: 85vw;
    max-width: 85vw;
  }
}

@media (max-width: 600px) {
  .advisor-section {
    /* padding: 60px 20px; */
  }
  
  .advisor-left h2 {
    font-size: 28px;
  }
  
  .advisor-card {
    min-width: 90vw;
    max-width: 90vw;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .advisor-card img {
    margin: 0 auto;
  }
  
  .info li {
    padding-left: 0;
  }
  
  .info li::before {
    display: none;
  }
}

.how-it-works {
  text-align: center;
  padding: 80px 20px;
}

.how-it-works h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a2540;
}

.how-it-works .underline {
  display: block;
  width: 70px;
  height: 4px;
  background: #f9b000;
  margin: 10px auto 60px;
  border-radius: 5px;
}

.steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.step {
  width: 30%;
  background: transparent;
  z-index: 2;
}

.step img {
  width: 120px;
  margin-bottom: 20px;
  height: auto;
}

.step p {
  font-size: 18px;
  color: #0a2540;
  margin-top: 20px;
  line-height: 1.5;
}

.number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eaf0ff;
  color: #0a2540;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}

.line {
  position: absolute;
  top: 220px;
  left: 10%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed #d0dcff;
  z-index: 1;
}

.cta {
  display: inline-block;
  margin-top: 70px;
  padding: 14px 28px;
  background: #0a5cff;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(10,92,255,0.25);
  transition: background 0.3s;
  width: auto; /* Add this */
  max-width: 300px; /* Add this to limit width */
}

.cta:hover {
  background: #084ad6;
  color: #fff;
}

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #0a5cff;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  text-decoration: none;
}

#scrollTop:hover {
  background: #084ad6;
}

/* Responsive How It Works */
@media (max-width: 1024px) {
  .step p {
    font-size: 16px;
  }
  
  .step img {
    width: 100px;
  }
}

@media (max-width: 900px) {
  .how-it-works {
    padding: 60px 20px;
  }
  
  .how-it-works h2 {
    font-size: 30px;
  }
  
  .steps {
    flex-direction: column;
    gap: 60px;
  }

  .step {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .line {
    display: none;
  }
  
  .step p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .how-it-works h2 {
    font-size: 26px;
  }
  
  .step img {
    width: 80px;
  }
  
  .step p {
    font-size: 16px;
  }
  
  .cta {
    padding: 12px 24px;
    font-size: 15px;
  }
}
.why-section {
  text-align: center;
}

.why-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a2540;
  max-width: 900px;
  margin: auto;
}

.why-section .underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #f9b000;
  margin: 14px auto 60px;
  border-radius: 4px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 100%;
  max-width: 350px;
}

.cards .card:nth-child(1),
.cards .card:nth-child(2),
.cards .card:nth-child(3) {
  flex: 0 0 calc(33.333% - 20px);
}

.cards .card:nth-child(4) {
  flex: 0 0 calc(33.333% - 20px);
  margin-left: 16.666%; 
}

.cards .card:nth-child(5) {
  flex: 0 0 calc(33.333% - 20px);
  margin-right: 16.666%; 
}

.image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.content {
  background: #fff;
  padding: 30px 25px 25px;
  border-radius: 18px;
  margin-top: -60px;
  text-align: left;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  position: relative;
}

.icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  position: absolute;
  top: -24px;
  left: 25px;
}

.icon img {
  width: 22px;
  height: auto;
}

.content h3 {
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 12px;
  margin-top: 15px;
}

.content p {
  font-size: 15px;
  line-height: 1.5;
  color: #425466;
}

/* Responsive Why Section - MOBILE */
@media (max-width: 1024px) {
  .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reset for tablet */
  .cards .card:nth-child(1),
  .cards .card:nth-child(2),
  .cards .card:nth-child(3),
  .cards .card:nth-child(4),
  .cards .card:nth-child(5) {
    flex: unset;
    margin: 0;
  }
  
  .card {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .why-section h2 {
    font-size: 30px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .card {
    max-width: 100%;
  }
  
  .image img {
    height: 200px;
  }
  
  .content {
    margin-top: -50px;
    padding: 30px 20px 25px;
  }
}

@media (max-width: 600px) {
  .why-section h2 {
    font-size: 26px;
  }
  
  .cards {
    gap: 40px;
  }
  
  .card {
    max-width: 100%;
  }
  
  .image img {
    height: 180px;
  }
  
  .content {
    padding: 25px 20px 20px;
  }
  
  .content h3 {
    font-size: 18px;
  }
  
  .content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .card {
    max-width: 100%;
  }
  
  .image img {
    height: 160px;
  }
  
  .content {
    margin-top: -40px;
    padding: 20px 15px 15px;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 20px;
  }
  
  .icon img {
    width: 18px;
  }
}
.pb-testimonial {
  background: #f3f7ff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.pb-testimonial .pb-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.pb-testimonial .pb-title {
  font-size: 32px;
  color: #1f2b45;
  margin: 0;
  text-align: center;
}

.pb-testimonial .pb-underline {
  width: 60px;
  height: 4px;
  background: orange;
  margin: 12px auto 30px;
}

.pb-testimonial .pb-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #1f2b45;
  font-size: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.pb-testimonial .pb-stats span {
  color: #6b5be2;
  font-weight: 700;
}

.pb-testimonial .pb-divider {
  width: 1px;
  height: 25px;
  background: #dcdcdc;
}

/* TESTIMONIAL GRID */
.pb-testimonial .pb-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  padding-bottom: 20px;
  position: relative;
}

.pb-testimonial .pb-card:nth-child(n+7) {
  display: none !important;
}

.pb-testimonial .pb-card {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.pb-testimonial .pb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pb-testimonial .pb-card p {
  font-size: 15px;
  color: #1f2b45;
  line-height: 1.5;
  margin-bottom: 25px;
  flex: 1;
}

.pb-testimonial .pb-user {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: auto;
}

.pb-testimonial .pb-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.pb-testimonial .purple { background: #e8e4ff; color: #6b5be2; }
.pb-testimonial .yellow { background: #fff2c6; color: #f4a000; }
.pb-testimonial .cyan { background: #e4fbff; color: #00a7c4; }

.pb-testimonial h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.pb-testimonial span {
  font-size: 13px;
  color: #666;
}

/* Arrows */
.pb-testimonial .pb-arrows {
  position: absolute;
  right: 0;
  top: 110px;
  display: flex;
  gap: 15px;
}

.pb-testimonial .pb-arrows button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
}

.pb-testimonial .pb-arrows button:hover {
  background: #f0f0f0;
  border-color: #6b5be2;
  color: #6b5be2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pb-testimonial .pb-slider {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    max-width: 800px;
    margin: 0 auto;
  }
  .pb-testimonial .pb-card:nth-child(n+5) {
    display: none !important;
  }
  
  .pb-testimonial .pb-card:nth-child(n+7) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pb-testimonial .pb-slider {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    max-width: 500px;
    gap: 20px;
    margin: 0 auto;
  }

  .pb-testimonial .pb-card:nth-child(n+3) {
    display: none !important;
  }
  
  .pb-testimonial .pb-card:nth-child(n+5) {
    display: none !important;
  }
  
  .pb-testimonial .pb-card:nth-child(n+7) {
    display: none !important;
  }

  .pb-testimonial .pb-stats {
    flex-direction: column;
    gap: 15px;
  }

  .pb-testimonial .pb-divider {
    display: none;
  }

  .pb-testimonial .pb-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  .pb-testimonial {
    padding: 40px 15px;
  }

  .pb-testimonial .pb-title {
    font-size: 24px;
  }
  
  .pb-testimonial .pb-card {
    min-height: 250px;
    padding: 20px;
  }
  
  .pb-testimonial .pb-card p {
    font-size: 14px;
    min-height: 100px;
  }
}


.wrapper {
  width: 100%;
}

/* MAIN BAR */
.accordion-box {
  height: 64px;
  padding: 0 24px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.title {
  font-size: 18px;
  font-weight: 500;
  color: #0b3c5d;
}

.chevron {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* DESCRIPTION */
.accordion-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.accordion-desc p {
  margin: 18px 0 24px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ACTIVE */
.wrapper.active .accordion-desc {
  max-height: 200px;
}

.wrapper.active .chevron {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .accordion-box {
    height: 56px;
    padding: 0 18px;
  }

  .title {
    font-size: 16px;
  }
}