     /* --- VARIABLES DE COLOR --- */     :root {         /* VERDE ELEGANTE (AseCo Green) */         --aseco-green: #4F8A70;                          /* FONDO GENERAL TARJETA (Verde muy clarito) */         --aseco-card-bg: #E6F0EC;                       /* FONDO DE CÍRCULOS (Blanco) */         --aseco-icon-bg: #FFFFFF;                  --aseco-black: #000000;                 font-family: 'Roboto', sans-serif;     }      @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');      /* --- CONTENEDOR PRINCIPAL --- */     .tech-section-wrapper {         width: 100%;         max-width: 1200px;         margin: 0 auto;         padding: 40px 20px;         box-sizing: border-box;     }      /* (Se han eliminado los estilos del encabezado) */      .highlight-green { color: var(--aseco-green); }      /* --- TARJETA PRINCIPAL (Fondo verde claro) --- */     .stats-card {         background-color: var(--aseco-card-bg);         border-radius: 16px;         padding: 50px 20px;         box-shadow: 0 10px 40px rgba(79, 138, 112, 0.1);         width: 100%;         box-sizing: border-box;     }      /* --- GRID (Fila única en PC) --- */     .stats-flex {         display: flex;         justify-content: space-between; /* Distribuye el espacio */         align-items: flex-start;         flex-wrap: nowrap; /* Fuerza una sola línea en PC */         gap: 15px;     }      /* --- ÍTEM INDIVIDUAL --- */     .stat-item {         flex: 1; /* Todos ocupan lo mismo */         display: flex;         flex-direction: column;         align-items: center;         text-align: center;         padding: 0 5px;         min-width: 0; /* Evita desbordamientos */     }      /* --- CÍRCULO ICONO (Blanco) --- */     .icon-circle {         background-color: var(--aseco-icon-bg);         width: 80px;         height: 80px;         border-radius: 24px;          display: flex;         justify-content: center;         align-items: center;         margin-bottom: 20px;         color: var(--aseco-green);         box-shadow: 0 4px 15px rgba(0,0,0,0.05);          flex-shrink: 0; /* Evita que el círculo se aplaste */     }      .stat-svg {         width: 36px;         height: 36px;         stroke: currentColor;         stroke-width: 1.8;         fill: none;         stroke-linecap: round;         stroke-linejoin: round;     }      /* --- TIPOGRAFÍA DE 3 ALTURAS --- */          /* 1. NÚMERO (Grande Verde) */     .stat-number {         font-size: 40px;         font-weight: 700;         color: var(--aseco-green);         line-height: 1;         margin-bottom: 10px;     }      /* 2. TÍTULO (Medio Verde) */     .stat-title {         font-size: 18px;         font-weight: 700;          color: var(--aseco-green);         margin-bottom: 5px;         text-transform: capitalize;     }      /* 3. SUBTÍTULO (Negro y Negrita) */     .stat-desc {         font-size: 15px;         font-weight: 700; /* Negrita */         color: var(--aseco-black); /* Negro */         line-height: 1.3;         max-width: 220px;      }      /* --- MÓVIL --- */     @media (max-width: 768px) {         /* En móvil permitimos que bajen a 2 filas */         .stats-flex {              flex-wrap: wrap;              gap: 40px 10px;          }                  .stat-item {              flex: 1 1 45%; /* Ocupan casi la mitad */         }                  .stat-number { font-size: 34px; }     }    /* Contenedor Principal */   .stk-section {     background-color: #E6F0EC; /* Verde "Menta Alegre" más vivo */     color: #4F8A70;     padding: 60px 20px;     font-family: sans-serif;     text-align: center;     border-radius: 8px;   }    /* Títulos */   .stk-title {     font-size: 3.5rem;     font-weight: 800;     margin-bottom: 10px;     line-height: 1.1;     color: #000000;   }    .stk-subtitle {     font-size: 1.3rem;     font-weight: 500;     margin-bottom: 50px;     color: #4F8A70;   }    /* Lista de características */   .stk-features-grid {     display: grid;     grid-template-columns: 1fr 1fr;     gap: 20px 40px;     max-width: 1000px;     margin: 0 auto 60px auto;     text-align: left;   }    .stk-feature-item {     display: flex;     align-items: flex-start;     gap: 15px;     font-size: 1.05rem;     line-height: 1.5;   }    /* Iconos (SVG) */   .stk-icon {     width: 24px;     height: 24px;     fill: #2e2eb8;     flex-shrink: 0;     margin-top: 2px;   }    /* Tarjetas de Capacidad */   .stk-cards-container {     display: flex;     justify-content: center;     gap: 30px;     flex-wrap: wrap;   }    .stk-card {     background-color: #f4f7f6; /* Gris de la web solicitado */     border-radius: 12px;     padding: 35px 30px;     width: 100%;     max-width: 350px;     display: flex;     flex-direction: column;     align-items: center;     justify-content: center;     /* Quitamos la sombra o la dejamos muy sutil ya que el fondo es gris */     box-shadow: 0 4px 10px rgba(0,0,0,0.03);   }    .stk-card-icon {     width: 50px;     height: 50px;     fill: #2e2eb8;     margin-bottom: 15px;   }    .stk-card-number {     font-size: 3rem;     font-weight: 700;     line-height: 1;     margin-bottom: 5px;     color: #4F8A70;   }    .stk-card-label {     font-size: 1.1rem;     font-weight: 500;   }    /* Versión Móvil */   @media (max-width: 768px) {     .stk-features-grid {       grid-template-columns: 1fr;     }     .stk-title {       font-size: 2.5rem;     }   }    /* --- ESTILOS DE LA SECCIÓN DE PASOS --- */      .process-section {     background-color: #E6F0EC; /* Fondo verde suave coherente con lo anterior */     padding: 40px 20px;     font-family: 'Roboto', sans-serif;   }    /* Contenedor de la lista (centrado y ancho controlado) */   .steps-container {     max-width: 900px;     margin: 0 auto;     display: flex;     flex-direction: column;     gap: 20px; /* Espacio entre cada tarjeta */   }    /* Estilo de cada Tarjeta (Paso) */   .step-card {     background-color: #ffffff; /* Fondo Blanco */     border-radius: 12px;       /* Bordes redondeados */     padding: 25px 30px;     display: flex;     align-items: center;       /* Centrar verticalmente */     gap: 25px;                 /* Espacio entre número y texto */     box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Sombra muy sutil */     transition: transform 0.2s ease;   }    /* Pequeño efecto al pasar el ratón */   .step-card:hover {     transform: translateY(-2px);     box-shadow: 0 6px 15px rgba(0,0,0,0.05);   }    /* Círculo del Número */   .step-number {     background-color: #4F8A70; /* Verde Corporativo */     color: #ffffff;            /* Número en blanco */     width: 45px;     height: 45px;     border-radius: 50%;        /* Círculo perfecto */     display: flex;     justify-content: center;     align-items: center;     font-weight: 700;     font-size: 1.2rem;     flex-shrink: 0;            /* Evita que el círculo se aplaste si hay mucho texto */   }    /* Texto del Paso */   .step-text {     font-size: 1.1rem;     color: #333333;            /* Gris oscuro para buena lectura */     line-height: 1.5;     font-weight: 500;     margin: 0;   }    /* Ajustes para Móvil */   @media (max-width: 600px) {     .step-card {       padding: 20px;       gap: 15px;       align-items: flex-start; /* En móvil alineamos arriba por si el texto es largo */     }     .step-number {       margin-top: 2px; /* Ajuste óptico para alinear con la primera línea de texto */       width: 35px;       height: 35px;       font-size: 1rem;     }     .step-text {       font-size: 1rem;     }   }    /* --- ESTILOS DE LA SECCIÓN DE MEDIDAS --- */      /* Contenedor principal para el fondo */   .measures-section {     background-color: #E6F0EC; /* Fondo verde suave */     padding: 40px 20px;     font-family: 'Roboto', sans-serif;   }    /* La tarjeta blanca */   .measures-card {     background-color: #ffffff;     max-width: 900px; /* Ancho máximo para que no se desparrame */     margin: 0 auto;   /* Centrada */     border-radius: 16px; /* Bordes redondeados */     box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave */     overflow: hidden; /* Para que la barra inferior respete el redondeo */     text-align: center;   }    /* Título de la tarjeta */   .measures-title {     font-size: 2rem;     font-weight: 700;     color: #4F8A70; /* Gris oscuro */     margin: 0;     padding: 40px 20px 30px 20px; /* Espacio alrededor */   }    /* Contenedor flexible para los 3 datos */   .measures-flex {     display: flex;     justify-content: space-around; /* Distribuye el espacio equitativamente */     align-items: center;     padding: 0 20px 50px 20px; /* Espacio inferior antes de la barra */     flex-wrap: wrap; /* Permite que se adapte en pantallas pequeñas */     gap: 30px;   }    /* Cada ítem de medida individual */   .measure-item {     display: flex;     flex-direction: column;     align-items: center;     min-width: 150px; /* Ancho mínimo para asegurar espacio */   }    /* El número grande */   .measure-value {     font-size: 3.5rem;     font-weight: 800;     color: #000000; /* Negro para máximo contraste, como en la imagen */     line-height: 1;     margin-bottom: 10px;   }    /* La etiqueta debajo del número */   .measure-label {     font-size: 1.2rem;     font-weight: 500;     color: #4F8A70; /* Un gris un poco más claro */   }    /* La barra verde decorativa al final */   .measures-bottom-bar {     height: 25px;     background-color: #4F8A70; /* Verde corporativo */     width: 100%;   }    /* Ajustes para Móvil */   @media (max-width: 600px) {     .measures-title {       font-size: 1.6rem;       padding-bottom: 20px;     }     .measure-value {       font-size: 2.8rem;     }     .measures-flex {       gap: 40px; /* Más espacio vertical entre elementos al apilarse */       padding-bottom: 40px;     }   }    /* --- Estilos del Bloque CTA --- */    /* Contenedor Principal */   .cta-section {     background-color: #E6F0EC; /* Fondo verde muy suave */     padding: 80px 20px;     text-align: center;     font-family: sans-serif;     border-radius: 8px;   }    /* Título Principal */   .cta-title {     font-size: 3.5rem;     font-weight: 800;     color: #000000;     margin-bottom: 25px;     line-height: 1.1;     max-width: 900px;     margin-left: auto;     margin-right: auto;   }    /* Clase para destacar la palabra en AZUL */   .highlight-blue {     color: #2e2eb8;   }    /* Texto descriptivo */   .cta-text {     font-size: 1.3rem;     color: #4F8A70; /* Verde oscuro */     max-width: 800px;     margin: 0 auto 45px auto;     line-height: 1.6;     font-weight: 500;   }    /* Contenedor del botón */   .cta-button-wrapper {     display: flex;     justify-content: center;   }    /* Estilo del Botón */   .cta-button {     display: inline-flex;     align-items: center;     gap: 12px;     background-color: #3fc206; /* Verde vivo del logo */     color: #ffffff !important; /* Texto BLANCO forzado */     text-decoration: none;     padding: 18px 40px;     border-radius: 50px;     font-size: 1.2rem;     font-weight: 700;     transition: all 0.3s ease;     border: none;     cursor: pointer;     box-shadow: 0 4px 15px rgba(63, 194, 6, 0.3);   }    /* Efecto Hover (al pasar el ratón) */   .cta-button:hover {     background-color: #36a605; /* Se oscurece ligeramente */     transform: translateY(-2px);     box-shadow: 0 6px 20px rgba(63, 194, 6, 0.4);     color: #ffffff !important; /* Mantiene texto blanco */   }    /* Icono de flecha */   .cta-btn-icon {     width: 20px;     height: 20px;     fill: currentColor;     transition: transform 0.3s ease;   }   .cta-button:hover .cta-btn-icon {      transform: translateX(4px);   }    /* Versión Móvil */   @media (max-width: 768px) {     .cta-title {       font-size: 2.5rem;     }     .cta-text {       font-size: 1.1rem;     }     .cta-button {         width: 100%;         justify-content: center;         padding: 15px 20px;     }   } #sp-x8npj78q504g{width: 100%; max-width: 100%; padding: 10px;}#sp-t1nmtd06y2ty{padding: 0px; width: auto; max-width: 1000px;}#sp-u4nd9c{width: calc(100% + 0px);}#sp-lmrcvy{height: 27px;}#sp-fvx4gw{font-size: 20px; margin: 0px; text-align: left;}#sp-eh2wd3hq4l{text-align: center;}#sp-7w26ua7fyd{color: #2e2eb8;}#sp-e4m98v{font-size: 50px; margin: 0px; text-align: left;}#sp-sllyyedtrx{text-align: center;}#sp-8hpl08q9xd{color: #2e2eb8;}#sp-rfzuk1{margin: 0px; text-align: left;}#sp-ewgwle{margin: 0px;}#sp-mlne1t{height: 37px;}#sp-zo449r7kwyaq{width: 100%; max-width: 100%; padding: 10px;}#sp-eqq31jucaa2r{padding: 0px; width: auto; max-width: 1000px;}#sp-mkgpoqplwqu{width: calc(100% + 0px);}#sp-ohqi2j{height: 60px;}#sp-yt1kfp{margin: 0px;}#sp-mzo8jz{height: 60px;}#sp-xrb4h9{font-size: 20px; margin: 0px; text-align: left;}#sp-ric023dgpy{text-align: center;}#sp-9audf20523{color: #2e2eb8;}#sp-xu6l4q{font-size: 50px; margin: 0px; text-align: left;}#sp-69uh6cdx8l{text-align: center;}#sp-97af8acwf4{color: #2e2eb8;}#sp-qnh1zl{margin: 0px; text-align: left;}#sp-h8wwsd2do21q{width: 100%; max-width: 100%; padding: 10px;}#sp-ge4z8o2aegjv{padding: 0px; width: auto; max-width: 1000px;}#sp-w90vg9uh2m0i{width: calc(50% + 0px);}#sp-gb61a1{font-size: 20px; margin: 0px; text-align: left;}#sp-p2lozjv1vb{color: #2e2eb8;}#sp-p0a49dkkof{text-decoration: none;}#sp-hyu7awcmimwl{font-size: 35px; text-align: left; padding: 0px; margin: 20px 0px 0px;}#sp-kgw7y1dl47hr{margin: 0px; text-align: left;}#sp-17waldxtuu{color: #4f8a70;}#sp-uxe5b85kcf{color: #4f8a70;}#sp-e40yrphsci{color: #4f8a70;}#sp-vr7qecsk6h{color: #4f8a70;}#sp-1xj2yh1nqc{color: #4f8a70;}#sp-0ikgly4t17{color: #4f8a70;}#sp-pdrypvbatt{color: #4f8a70;}#sp-mrdx8yscfo9e{width: calc(50% + 0px);}#sp-g8ex2c47ukp6{margin: 20px 0px 0px; text-align: center;}#sp-t9nuc55gs6{border-radius: 25px; object-fit: fill; height: 400px; width: 350px;}#sp-h6qj2a{width: 100%; max-width: 100%; padding: 10px;}#sp-ywx32p{padding: 0px; width: auto; max-width: 1000px;}#sp-g9ajge{width: calc(50% + 0px);}#sp-wn3vc0{font-size: 20px; margin: 0px; text-align: left;}#sp-0ssr7czp26{color: #2e2eb8;}#sp-mvf9xaiwd9{text-decoration: none;}#sp-upmtkh{font-size: 35px; text-align: left; padding: 0px; margin: 20px 0px 0px;}#sp-eqgzxn{margin: 0px; text-align: left;}#sp-tsjduirkw8{color: #ff0000;}#sp-c8kdrfom5j{color: #3fc206;}#sp-yahl81q824{color: #3fc206;}#sp-sulzwz3d7z{color: #3fc206;}#sp-awxcuj{width: calc(50% + 0px);}#sp-b4b96p{margin: 20px 0px 0px; text-align: center;}#sp-k2fiixi4p8{border-radius: 25px; object-fit: fill; width: 350px; height: 400px;}#sp-ft827d{width: 100%; max-width: 100%; padding: 10px;}#sp-jih4vv{padding: 0px; width: auto; max-width: 1000px;}#sp-kk7yik{width: calc(50% + 0px);}#sp-ydn7ti{font-size: 20px; margin: 0px; text-align: left;}#sp-mfp0on8qwk{color: #2e2eb8;}#sp-1gtb2wxbtj{text-decoration: none;}#sp-mf78gl{font-size: 35px; text-align: left; padding: 0px; margin: 20px 0px 0px;}#sp-djcomr{margin: 0px; text-align: left;}#sp-ydvdr7ge0t{color: #ff0000;}#sp-3kpo00nmco{color: #000000;}#sp-mf3lycjd2b{color: #3fc206;}#sp-ma7e5z2g37{color: #3fc206;}#sp-d7ookplxz4{color: #000000;}#sp-k7q7r80ko4{color: #3fc206;}#sp-5x8rjvwy6d{color: #3fc206;}#sp-1ofirmn3tf{color: #000000;}#sp-rb2h1q{width: calc(50% + 0px);}#sp-c61ba4{height: 15px;}#sp-gm7v1y{margin: 0px; text-align: center;}#sp-fjs1oqfcqy{border-radius: 25px; object-fit: fill; height: 400px; width: 350px;}#sp-c1nuobuco0of{width: 100%; max-width: 100%; padding: 10px;}#sp-rw9ofb88xgyj{padding: 0px; width: auto; max-width: 1000px;}#sp-yamol88go86v{width: calc(100% + 0px);}#sp-p6redi{font-size: 20px; margin: 0px; text-align: left;}#sp-khzxjhic6s{text-align: center;}#sp-3wc5xzz7z7{color: #2e2eb8;}#sp-me83pl{font-size: 50px; margin: 0px; text-align: left;}#sp-u2sj70bkat{text-align: center;}#sp-zu6vni{margin: 0px; text-align: left;}#sp-wjq5qniviq{text-align: center;}#sp-bbhgu9{margin: 0px;}#sp-t9n595{width: 100%; max-width: 100%; padding: 10px;}#sp-at3ylq{padding: 0px; width: auto; max-width: 1000px;}#sp-zzroms{width: calc(100% + 0px);}#sp-tswdqv{margin: 0px;}#sp-su02lw{margin: 0px; text-align: center;}#sp-9lfuyhebd6{width: 280%;}#sp-njn1jg{font-size: 25px; margin: 0px; text-align: left;}#sp-hl81wqswpt{text-align: center;}#sp-an4ego{margin: 0px; text-align: center;}#sp-26orcv3ews{object-fit: fill; width: 1000px; height: 400px;}#sp-vjiqsr{font-size: 25px; margin: 0px; text-align: left;}#sp-8n8kp4ckop{text-align: center;}#sp-nuy2tt{margin: 0px; text-align: center;}#sp-tra5p5dmeb{width: 800px;}#sp-najbjn{font-size: 25px; margin: 0px; text-align: left;}#sp-w0qfz8bmhw{text-align: center;}#sp-qya7xvrlc4{color: #4f8a70;}#sp-diop16{justify-content: center; margin: 0px;}#sp-16fq2ekqn6{width: 100%; max-width: 100%;}#sp-omccee{width: 100%; max-width: 100%; padding: 10px;}#sp-argqjq{padding: 0px; width: auto; max-width: 1000px;}#sp-g8v2k5{width: calc(100% + 0px);}#sp-fwcrsx{margin: 0px;}#sp-nn5dp2krcyva{width: 100%; max-width: 100%; padding: 10px;}#sp-qgt19hip4rmf{padding: 0px; width: auto; max-width: 1000px;}#sp-u0tgqtc37owz{width: calc(100% + 0px);}#sp-oatli6{margin: 0px;}@media only screen and (max-width: 480px) { #sp-lmrcvy {height:40px !important;} .sp-text-wrapper-fvx4gw,   #sp-fvx4gw,   #fvx4gw {text-align:left !important;} .sp-text-wrapper-e4m98v,   #sp-e4m98v,   #e4m98v {text-align:left !important;} .sp-text-wrapper-rfzuk1,   #sp-rfzuk1,   #rfzuk1 {text-align:left !important;} #sp-mlne1t {height:40px !important;} #sp-ohqi2j {height:40px !important;} #sp-mzo8jz {height:40px !important;} .sp-text-wrapper-xrb4h9,   #sp-xrb4h9,   #xrb4h9 {text-align:left !important;} .sp-text-wrapper-xu6l4q,   #sp-xu6l4q,   #xu6l4q {text-align:left !important;} .sp-text-wrapper-qnh1zl,   #sp-qnh1zl,   #qnh1zl {text-align:left !important;} .sp-text-wrapper-gb61a1,   #sp-gb61a1,   #gb61a1 {text-align:left !important;} .sp-headline-block-hyu7awcmimwl,   #sp-hyu7awcmimwl,   #hyu7awcmimwl {text-align:center !important;} .sp-text-wrapper-kgw7y1dl47hr,   #sp-kgw7y1dl47hr,   #kgw7y1dl47hr {text-align:left !important;} #sp-g8ex2c47ukp6 {text-align:center !important;} .sp-text-wrapper-wn3vc0,   #sp-wn3vc0,   #wn3vc0 {text-align:left !important;} .sp-headline-block-upmtkh,   #sp-upmtkh,   #upmtkh {text-align:center !important;} .sp-text-wrapper-eqgzxn,   #sp-eqgzxn,   #eqgzxn {text-align:left !important;} #sp-b4b96p {text-align:center !important;} .sp-text-wrapper-ydn7ti,   #sp-ydn7ti,   #ydn7ti {text-align:left !important;} .sp-headline-block-mf78gl,   #sp-mf78gl,   #mf78gl {text-align:center !important;} .sp-text-wrapper-djcomr,   #sp-djcomr,   #djcomr {text-align:left !important;} #sp-c61ba4 {height:40px !important;} #sp-gm7v1y {text-align:center !important;} .sp-text-wrapper-p6redi,   #sp-p6redi,   #p6redi {text-align:left !important;} .sp-text-wrapper-me83pl,   #sp-me83pl,   #me83pl {text-align:left !important;} .sp-text-wrapper-zu6vni,   #sp-zu6vni,   #zu6vni {text-align:left !important;} #sp-su02lw {text-align:center !important;} .sp-text-wrapper-njn1jg,   #sp-njn1jg,   #njn1jg {text-align:left !important;} #sp-an4ego {text-align:center !important;} .sp-text-wrapper-vjiqsr,   #sp-vjiqsr,   #vjiqsr {text-align:left !important;} #sp-nuy2tt {text-align:center !important;} .sp-text-wrapper-najbjn,   #sp-najbjn,   #najbjn {text-align:left !important;} #sp-diop16 {justify-content:center !important;}}@media only screen and (min-width: 481px) and (max-width: 1024px) { #sp-lmrcvy {height:10px !important;} .sp-text-wrapper-fvx4gw,   #sp-fvx4gw,   #fvx4gw {text-align:left !important;} .sp-text-wrapper-e4m98v,   #sp-e4m98v,   #e4m98v {text-align:left !important;} .sp-text-wrapper-rfzuk1,   #sp-rfzuk1,   #rfzuk1 {text-align:left !important;} #sp-mlne1t {height:10px !important;} #sp-ohqi2j {height:10px !important;} #sp-mzo8jz {height:10px !important;} .sp-text-wrapper-xrb4h9,   #sp-xrb4h9,   #xrb4h9 {text-align:left !important;} .sp-text-wrapper-xu6l4q,   #sp-xu6l4q,   #xu6l4q {text-align:left !important;} .sp-text-wrapper-qnh1zl,   #sp-qnh1zl,   #qnh1zl {text-align:left !important;} .sp-text-wrapper-gb61a1,   #sp-gb61a1,   #gb61a1 {text-align:left !important;} .sp-headline-block-hyu7awcmimwl,   #sp-hyu7awcmimwl,   #hyu7awcmimwl {text-align:center !important;} .sp-text-wrapper-kgw7y1dl47hr,   #sp-kgw7y1dl47hr,   #kgw7y1dl47hr {text-align:left !important;} #sp-g8ex2c47ukp6 {text-align:center !important;} .sp-text-wrapper-wn3vc0,   #sp-wn3vc0,   #wn3vc0 {text-align:left !important;} .sp-headline-block-upmtkh,   #sp-upmtkh,   #upmtkh {text-align:center !important;} .sp-text-wrapper-eqgzxn,   #sp-eqgzxn,   #eqgzxn {text-align:left !important;} #sp-b4b96p {text-align:center !important;} .sp-text-wrapper-ydn7ti,   #sp-ydn7ti,   #ydn7ti {text-align:left !important;} .sp-headline-block-mf78gl,   #sp-mf78gl,   #mf78gl {text-align:center !important;} .sp-text-wrapper-djcomr,   #sp-djcomr,   #djcomr {text-align:left !important;} #sp-c61ba4 {height:10px !important;} #sp-gm7v1y {text-align:center !important;} .sp-text-wrapper-p6redi,   #sp-p6redi,   #p6redi {text-align:left !important;} .sp-text-wrapper-me83pl,   #sp-me83pl,   #me83pl {text-align:left !important;} .sp-text-wrapper-zu6vni,   #sp-zu6vni,   #zu6vni {text-align:left !important;} #sp-su02lw {text-align:center !important;} .sp-text-wrapper-njn1jg,   #sp-njn1jg,   #njn1jg {text-align:left !important;} #sp-an4ego {text-align:center !important;} .sp-text-wrapper-vjiqsr,   #sp-vjiqsr,   #vjiqsr {text-align:left !important;} #sp-nuy2tt {text-align:center !important;} .sp-text-wrapper-najbjn,   #sp-najbjn,   #najbjn {text-align:left !important;} #sp-diop16 {justify-content:center !important;}}