/* Section divider for clarity */
.section-divider {
  width: 100%;
  height: 0;
  border-top: 2.5px dashed var(--accent);
  margin: 32px 0 38px 0;
  opacity: 0.5;
}
/* Service Details Timeline Style */
.service-detail-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0 0 12px 0;
  position: relative;
}
.service-detail-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.service-detail-timeline-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light, #D4CBC4), #D4CBC4);
  color: var(--primary, #7a0649);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 2px 10px rgba(242,201,76,0.10);
  margin-top: 2px;
}
.service-detail-timeline-item h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: var(--primary, #7a0649);
  font-weight: 600;
}
.service-detail-timeline-item p {
  margin: 0;
  color: var(--primary-dark, #5c0336);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .service-detail-timeline {
    gap: 18px;
  }
  .service-detail-timeline-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 19px;
  }
  .service-detail-timeline-item h4 {
    font-size: 15px;
  }
  .service-detail-timeline-item p {
    font-size: 13px;
  }
}
/* Services page styles */
.services-hero{
   position: relative;
  overflow: hidden;
  padding: 0px 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(242, 201, 76, 0.25), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(212, 203, 196, 0.12), transparent 28%),
    linear-gradient(125deg, #5a0336 0%, #7a0649 55%, #8d1459 100%);
  color: #fff;
}


.services-hero .container{
  padding: 78px 0;
  max-width:1320px;
  position: relative;
  z-index: 2;
}

.services-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.services-hero::after{
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -110px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.22);
  pointer-events: none;
}

.services-hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px;
}

.services-hero-content h1{
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.services-hero-content p{
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
}

.services-hero-buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.services-intro-section,
.services-feature-section,
.services-process-section,
.services-detail-section,
.service-notice-section,
.about-faq-section,
.services-cta-section{
  padding: 80px 0;
}

.services-intro-section{
  background: #D4CBC4;
}

.services-intro-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-intro-image{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services-intro-image img{
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.services-mini-points{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.services-feature-section{
  padding: 80px 0;
  background: linear-gradient(to bottom, #D4CBC4, #D4CBC4);
}

.services-feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-feature-card{
  background: #D4CBC4;
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122, 6, 73, 0.08);
  transition: var(--transition);
}

.service-feature-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--gold-glow);
}

.service-feature-icon{
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 28px;
}

.service-feature-card h3{
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}


.services-process-section {
  padding: 80px 0;
  background: #D4CBC4;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-process-box {
  background: #D4CBC4;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-process-box:hover {
  box-shadow: var(--gold-glow);
  transform: translateY(-6px);
}
.service-process-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #D4CBC4 80%);
  color: var(--primary, #7a0649);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(242,201,76,0.10);
}
.service-process-box h4 {
  font-size: 20px;
  color: var(--primary, #7a0649);
  font-weight: 700;
  margin-bottom: 10px;
}
.service-process-box p {
  color: var(--primary-dark, #5c0336);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-process-box {
    padding: 20px 12px;
    border-radius: 12px;
  }
  .service-process-number {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .service-process-box h4 {
    font-size: 15px;
  }
  .service-process-box p {
    font-size: 13px;
  }
}

.services-detail-grid{
  display: block;
  padding: 0;
  margin: 0;
}

.service-detail-card{
  /* No longer used, remove box style */
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: none;
  margin: 0;
}
/* Service details list style (no boxes) */
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail-list li {
  margin-bottom: 18px;
  padding-left: 0;
  font-size: 17px;
  color: var(--primary-dark, #5c0336);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  background: none;
  padding: 0 0 0 16px;
}
.service-detail-list strong {
  color: var(--primary);
  font-weight: 600;
}

.service-detail-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}

.service-detail-card h3{
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-notice-section{
  padding: 50px 0 80px;
  background: #D4CBC4;
}

.service-notice-box{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #D4CBC4;
  border-left: 4px solid var(--accent);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.service-notice-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 24px;
}

.service-notice-box h3{
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.services-cta-section{
  padding: 80px 0;
  background: #D4CBC4;
}

.services-cta-box{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 60px 30px;
  box-shadow: var(--shadow-lg);
}

.services-cta-box h2{
  color: #fff;
  margin-bottom: 12px;
  font-size: 38px;
}

.services-cta-box p{
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  font-size: 16px;
}

@media (max-width: 1199px){
  .services-hero-content h1{
    font-size: 44px;
  }

  .services-feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px){
  .services-intro-grid,
  .services-detail-grid{
    grid-template-columns: 1fr;
  }

  .services-intro-image img{
    height: 400px;
  }

  .services-hero-content h1{
    font-size: 36px;
  }
}

@media (max-width: 767px){
  .services-hero-content h1{
    font-size: 28px;
  }

  .services-process-grid,
  .services-detail-grid{
    grid-template-columns: 1fr;
  }

  .services-feature-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 2px 0 8px;
  }

  .services-feature-grid::-webkit-scrollbar{
    display:none;
  }

  .services-feature-card{
    flex:0 0 190px;
    scroll-snap-align:start;
    border-radius:12px;
    padding:16px 12px;
  }

  .service-feature-icon{
    width:48px;
    height:48px;
    margin:0 auto 10px;
    font-size:20px;
  }

  .service-feature-card h3{
    font-size:16px;
    margin-bottom:8px;
  }

  .service-feature-card p{
    font-size:12px;
    line-height:1.5;
  }

  .services-hero-buttons{
    flex-direction: column;
    align-items: flex-start;
  }

  .services-hero-buttons .btn,
  .about-cta-buttons .btn{
    width: 100%;
    justify-content: center;
  }

  .service-notice-box{
    flex-direction: column;
  }

  .services-cta-box h2{
    font-size: 28px;
  }
}

/* Improved services page layout and FAQ styling */
.services-hero .container{
  max-width: 1320px;
}

.services-hero-content{
  max-width: 760px;
  padding: 80px 0;
}

.services-hero-content p{
  margin-bottom: 28px;
}

.services-hero-buttons .btn{
  min-width: 180px;
}

.services-intro-text{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.services-mini-points{
  margin-top: 30px;
}

.mini-info-box{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D4CBC4;
  color: var(--primary);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.25);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.service-feature-card{
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-detail-grid .service-detail-card{
  min-height: 280px;
}

.services-cta-box{
  max-width: 980px;
  margin: 0 auto;
}

.faq-tag{
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #D4CBC4;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 991px){
  .services-intro-section,
  .services-feature-section,
  .services-process-section,
  .services-detail-section,
  .service-notice-section,
  .about-faq-section,
  .services-cta-section{
    padding: 56px 0;
  }

  .services-hero-content{
    padding: 48px 0;
  }
}

@media (max-width: 575px){
  .services-hero-content{
    padding: 24px 0;
  }

  .services-intro-image img{
    height: 240px;
  }

  .service-feature-card,
  .service-process-box,
  .service-detail-card,
  .service-notice-box,
  .services-cta-box{
    padding: 18px 16px;
    border-radius: 18px;
  }

  .service-feature-card h3,
  .service-process-box h4,
  .service-detail-card h3,
  .service-notice-box h3{
    font-size: 19px;
  }
}

.faq-wrapper{
  max-width: 980px;
  margin: 0 auto;
}

.faq-item{
  background: #D4CBC4;
  border: 1px solid rgba(122, 6, 73, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover{
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.faq-question{
  width: 100%;
  border: none;
  background: #D4CBC4;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover{
  background: linear-gradient(135deg, #D4CBC4, #D4CBC4);
}

.faq-question:focus{
  outline: none;
  box-shadow: none;
}

.faq-answer-wrap{
  border-top: 1px solid rgba(122, 6, 73, 0.06);
}

.faq-answer{
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
}

.faq-icon{
  position: relative;
  min-width: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), #D4CBC4);
  border: 1px solid rgba(242, 201, 76, 0.45);
  display: inline-block;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: var(--transition);
  border-radius: 2px;
}

.faq-icon::before{
  width: 14px;
  height: 2px;
}

.faq-icon::after{
  width: 2px;
  height: 14px;
}

.faq-question:not(.collapsed) .faq-icon{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(122, 6, 73, 0.18);
}

.faq-question:not(.collapsed) .faq-icon::before,
.faq-question:not(.collapsed) .faq-icon::after{
  background: #D4CBC4;
}

.faq-question:not(.collapsed) .faq-icon::after{
  height: 0;
}

.faq-question:not(.collapsed){
  background: linear-gradient(135deg, #D4CBC4, #D4CBC4);
  color: var(--primary);
}

@media (max-width: 1199px){
  .services-hero-content{
    padding: 70px 0;
  }
}

@media (max-width: 991px){
  .services-hero-content{
    padding: 50px 20px;
  }

  .services-hero-content h1{
    font-size: 36px;
  }

  .services-intro-image img{
    height: 420px;
  }
}

@media (max-width: 767px){
  .services-hero-content{
    padding: 40px 18px;
  }

  .services-hero-content h1{
    font-size: 30px;
  }

  .services-hero-buttons {
    width: 100%;
  }

  .services-hero-buttons .btn{
    width: 100%;
  }

  .services-intro-section,
  .services-feature-section,
  .services-process-section,
  .services-detail-section,
  .service-notice-section,
  .about-faq-section,
  .services-cta-section{
    padding: 60px 0;
  }
}

/* Final Services page 3D theme layer */
html,
body,
.services-feature-section,
.services-intro-section,
.services-detail-section,
.services-process-section,
.service-notice-section,
.about-faq-section,
.services-cta-section {
  background: #D4CBC4 !important;
  background-color: #D4CBC4 !important;
}

.service-feature-card,
.services-mini-points .mini-info-box,
.service-detail-timeline-item,
.service-process-box,
.service-notice-box,
.faq-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e6ddd6 0%, #D4CBC4 58%, #b9a89f 100%) !important;
  border: 2px solid #5a0336 !important;
  border-radius: 14px !important;
  box-shadow:
    7px 8px 0 rgba(90, 3, 54, 0.22),
    0 18px 30px rgba(90, 3, 54, 0.16),
    inset 1px 1px 0 rgba(255, 255, 255, 0.5) !important;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease !important;
}

.service-feature-card::before,
.services-mini-points .mini-info-box::before,
.service-detail-timeline-item::before,
.service-process-box::before,
.service-notice-box::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 42%, rgba(242, 201, 76, 0.22));
  opacity: 0.65;
  pointer-events: none;
}

.service-feature-card::after,
.services-mini-points .mini-info-box::after,
.service-detail-timeline-item::after,
.service-process-box::after,
.service-notice-box::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #5a0336 0%, #D4CBC4 48%, #f2c94c 100%);
  box-shadow: 0 -5px 14px rgba(90, 3, 54, 0.18);
  pointer-events: none;
}

.service-feature-card > *,
.services-mini-points .mini-info-box > *,
.service-detail-timeline-item > *,
.service-process-box > *,
.service-notice-box > *,
.faq-item > * {
  position: relative;
  z-index: 1;
}

.service-feature-card:hover,
.services-mini-points .mini-info-box:hover,
.service-detail-timeline-item:hover,
.service-process-box:hover,
.service-notice-box:hover,
.faq-item:hover {
  transform: translateY(-9px) rotateX(4deg) rotateY(-3deg) !important;
  filter: brightness(1.04);
  border-color: #7a0649 !important;
  box-shadow:
    10px 12px 0 rgba(90, 3, 54, 0.28),
    0 24px 38px rgba(90, 3, 54, 0.22),
    inset 1px 1px 0 rgba(255, 255, 255, 0.58) !important;
}

.service-feature-icon,
.service-process-number,
.service-detail-timeline-icon,
.service-notice-icon,
.services-mini-points .mini-info-box i,
.faq-icon {
  background: linear-gradient(145deg, #7a0649 0%, #5a0336 58%, #36011f 100%) !important;
  color: #fff !important;
  border: 2px solid #f2c94c !important;
  box-shadow:
    4px 5px 0 rgba(90, 3, 54, 0.24),
    0 12px 22px rgba(90, 3, 54, 0.24),
    inset 1px 1px 0 rgba(255, 255, 255, 0.22) !important;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-feature-card:hover .service-feature-icon,
.service-process-box:hover .service-process-number,
.service-detail-timeline-item:hover .service-detail-timeline-icon,
.service-notice-box:hover .service-notice-icon,
.services-mini-points .mini-info-box:hover i,
.faq-item:hover .faq-icon {
  transform: translateY(-4px) translateZ(16px) scale(1.06) !important;
  box-shadow:
    6px 7px 0 rgba(90, 3, 54, 0.3),
    0 16px 28px rgba(90, 3, 54, 0.3),
    inset 1px 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.service-feature-icon i,
.service-detail-timeline-icon i,
.service-notice-icon i,
.services-mini-points .mini-info-box i {
  color: #fff !important;
}

.faq-icon::before,
.faq-icon::after {
  background: #fff !important;
}

.services-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #7a0649 0%, #5a0336 62%, #36011f 100%) !important;
  border: 2px solid #f2c94c !important;
  box-shadow:
    8px 10px 0 rgba(90, 3, 54, 0.28),
    0 24px 42px rgba(90, 3, 54, 0.24),
    inset 1px 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.services-cta-box:hover {
  transform: translateY(-8px) rotateX(3deg) !important;
  box-shadow:
    11px 13px 0 rgba(90, 3, 54, 0.32),
    0 30px 48px rgba(90, 3, 54, 0.3),
    inset 1px 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.services-cta-box h2,
.services-cta-box p {
  color: #fff !important;
}

.services-cta-box .btn,
.service-feature-card .btn,
.service-notice-box .btn {
  border: 2px solid #f2c94c !important;
  box-shadow: 5px 6px 0 rgba(42, 1, 25, 0.26), 0 12px 22px rgba(90, 3, 54, 0.2) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease !important;
}

.services-cta-box .btn:hover,
.service-feature-card .btn:hover,
.service-notice-box .btn:hover {
  transform: translateY(-4px) !important;
  box-shadow: 7px 8px 0 rgba(42, 1, 25, 0.3), 0 16px 28px rgba(90, 3, 54, 0.26) !important;
}

@media (max-width: 767px) {
  .service-feature-card,
  .services-mini-points .mini-info-box,
  .service-detail-timeline-item,
  .service-process-box,
  .service-notice-box,
  .faq-item {
    box-shadow:
      5px 6px 0 rgba(90, 3, 54, 0.2),
      0 14px 24px rgba(90, 3, 54, 0.14),
      inset 1px 1px 0 rgba(255, 255, 255, 0.45) !important;
  }

  .service-feature-card:hover,
  .services-mini-points .mini-info-box:hover,
  .service-detail-timeline-item:hover,
  .service-process-box:hover,
  .service-notice-box:hover,
  .faq-item:hover {
    transform: translateY(-6px) rotateX(3deg) !important;
  }
}

/* Service Details polished card layout */
.services-detail-section {
  padding: 76px 0 48px !important;
}

.services-detail-section .section-divider {
  display: none !important;
}

.service-detail-timeline {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.service-detail-timeline-item {
  min-height: 188px;
  display: flex !important;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 28px 28px !important;
  border-radius: 18px !important;
}

.service-detail-timeline-item::after {
  left: 26px;
  right: 26px;
  height: 6px;
}

.service-detail-timeline-icon {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  border-radius: 18px !important;
  font-size: 30px !important;
}

.service-detail-timeline-item h4 {
  margin: 4px 0 10px !important;
  color: #5a0336 !important;
  font-size: 22px !important;
  line-height: 1.25;
  font-weight: 800 !important;
}

.service-detail-timeline-item p {
  margin: 0 !important;
  color: #3a2631 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.service-detail-timeline-item:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-2deg) !important;
}

@media (max-width: 991px) {
  .service-detail-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .services-detail-section {
    padding: 58px 0 34px !important;
  }

  .service-detail-timeline {
    gap: 18px;
    margin-top: 24px;
  }

  .service-detail-timeline-item {
    min-height: auto;
    gap: 14px;
    padding: 22px 18px 24px !important;
    border-radius: 15px !important;
  }

  .service-detail-timeline-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 14px !important;
    font-size: 23px !important;
  }

  .service-detail-timeline-item h4 {
    font-size: 18px !important;
  }

  .service-detail-timeline-item p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}
