* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #17E1A8;
}

.header-cta {
  background: #17E1A8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: #14c594;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #2d3748;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #17E1A8 0%, #14c594 100%);
  padding: 200px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffe066;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-subtitle strong span {
  color: #ffe066;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #17E1A8;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-cta.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-cta.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Mascote */
.hero-visual {
  text-align: center;
  position: relative;
}

.mascote-container {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.mascote-container img {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-card .number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

.stat-card .label {
  font-size: 13px;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 50px 0;
  background: transparent;
}

.about-card {
  max-width: 850px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #17E1A8 0%, #0EA5E9 100%);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23, 225, 168, 0.15);
  border: 1px solid rgba(23, 225, 168, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #17E1A8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-badge i {
  font-size: 14px;
}

.about-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.about-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  opacity: 0.8;
}

/* Carousel buttons - hidden by default (desktop) */
.carousel-btn {
  display: none;
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-card {
    padding: 24px 28px;
    border-radius: 12px;
  }

  .about-badge {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .about-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .about-text {
    font-size: 14px;
  }
}

/* Trust Badges */
.trust-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-content {
  text-align: center;
}

.trust-content p {
  color: #718096;
  font-size: 14px;
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-badge-item img {
  height: 45px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.trust-badge-item:hover img {
  opacity: 1;
}

.trust-badge-item span {
  font-size: 13px;
  color: #4a5568;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
}

.section-title p {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card.service-hidden {
  display: none;
}

.service-card.service-visible {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #17E1A8, #14c594);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 225, 168, 0.15);
  border-color: #17E1A8;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 18px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3748;
  text-align: center;
}

.service-card p {
  color: #718096;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 14px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 13px;
  margin-bottom: 8px;
}

.service-features li i {
  color: #17E1A8;
  font-size: 11px;
}

.service-details {
  background: rgba(23, 225, 168, 0.05);
  border: 1px solid rgba(23, 225, 168, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

.service-details strong {
  color: #2d3748;
  font-weight: 600;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.service-cta:hover {
  gap: 12px;
}

.service-cta i {
  font-size: 14px;
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #17E1A8;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.review-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #718096;
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
}

.review-service {
  font-size: 12px;
  color: #17E1A8;
  font-weight: 500;
  margin-top: 4px;
}

.review-debt {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  margin-top: 4px;
}

.review-debt i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.review-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #718096;
}

.review-footer i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: #17E1A8;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background: #14c594;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 225, 168, 0.3);
}

.load-more-btn:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

.reviews-loading {
  text-align: center;
  padding: 40px;
  color: #718096;
}

.spinner {
  border: 3px solid #f3f4f6;
  border-top: 3px solid #17E1A8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Legal/Compliance Section */
.legal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.legal-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-card h4 i {
  color: #17E1A8;
  font-size: 24px;
}

.legal-card p {
  color: #718096;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}

.legal-card ul {
  list-style: none;
  padding: 0;
}

.legal-card li {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.legal-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #17E1A8;
  font-weight: 700;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-service-group {
  margin-bottom: 48px;
}

.faq-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #17E1A8;
}

.faq-service-header i {
  font-size: 24px;
  color: #17E1A8;
}

.faq-service-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.faq-more-link:hover {
  gap: 12px;
}

.faq-item {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #17E1A8;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(23, 225, 168, 0.03);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-icon {
  font-size: 20px;
  color: #17E1A8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 8px 24px 24px;
  max-height: 1000px;
}

.faq-answer p {
  color: #718096;
  line-height: 1.8;
  font-size: 15px;
  margin: 0 0 12px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(23, 225, 168, 0.1), rgba(23, 225, 168, 0.05));
  color: #17E1A8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
  color: #14c594;
}

.blog-link i {
  font-size: 12px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #17E1A8 0%, #14c594 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #17E1A8;
  padding: 18px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-button.whatsapp:hover {
  background: #20ba59;
}

/* Footer */
.footer {
  background: #1a202c;
  color: #cbd5e0;
  padding: 50px 0 30px;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #17E1A8;
  color: #fff;
}

.footer-section h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #17E1A8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .mascote-container img {
    max-width: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel Mobile */
  .carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 5px 0 12px;
    margin: 0 -20px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .services-grid.carousel-container .service-card,
  .legal-grid.carousel-container .legal-card {
    flex: 0 0 calc(96% - 10px);
    scroll-snap-align: start;
    min-width: calc(96% - 10px);
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 99;
  }

  .header-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle.active i {
    color: #17E1A8;
  }

  .header-cta {
    font-size: 13px;
    padding: 8px 12px;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 160px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-meta {
    flex-direction: column-reverse;
  }

  .review-info h5 {
    text-align: center;
  }

  .review-service,
  .review-debt {
    text-align: center;
  }

  .trust-badges {
    gap: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
