.home-gioithieu,
.home-gioithieu *{
    box-sizing: border-box;
}
.home-gioithieu{
    --brand-green: #00ad22;
    --brand-green-dark: #008f1c;
    --brand-red: #ff120a;
    --brand-red-dark: #e50d06;
    --brand-orange: #ff8f45;
    --text-dark: #18221d;
    margin: 24px 0 38px;
    position: relative;
    z-index: 95;
    overflow: hidden;
}
.home-gioithieu img{
    max-width: 100%;
}
.home-gioithieu .row{
    display: flex;
    flex-wrap: wrap;
}
.home-gioithieu .row:before,
.home-gioithieu .row:after{
    display: none;
}
.home-gioithieu-services{
    width: 100%;
    padding: 0;
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.home-gioithieu-services .row{
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
    z-index: 1;
}
.home-gioithieu-services [class*="col-"]{
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
}
.home-gioithieu-service{
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    gap: 18px;
    padding: 26px 24px 26px 22px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,253,250,0.95)),
        radial-gradient(circle at 12% 0%, rgba(0,173,34,0.10), transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(255,18,10,0.06), transparent 34%);
    border: 1px solid rgba(17,34,28,0.08);
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(21,35,29,0.09);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
    animation: homeServiceFloat 5.6s ease-in-out infinite;
}
.home-gioithieu-services [class*="col-"]:nth-child(2) .home-gioithieu-service{
    animation-delay: .45s;
}
.home-gioithieu-services [class*="col-"]:nth-child(3) .home-gioithieu-service{
    animation-delay: .9s;
}
.home-gioithieu-services [class*="col-"]:first-child .home-gioithieu-service{
    padding-left: 22px;
}
.home-gioithieu-services [class*="col-"]:last-child .home-gioithieu-service{
    padding-right: 24px;
}
.home-gioithieu-service:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-green));
    opacity: .9;
    box-shadow: 0 5px 14px rgba(40,169,95,0.12);
    transition: opacity .32s ease, box-shadow .32s ease;
}
.home-gioithieu-service:after{
    content: "01";
    position: absolute;
    right: 18px;
    bottom: -9px;
    color: rgba(255,18,10,0.055);
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
}
.home-gioithieu-services [class*="col-"]:nth-child(2) .home-gioithieu-service:after{
    content: "02";
}
.home-gioithieu-services [class*="col-"]:nth-child(3) .home-gioithieu-service:after{
    content: "03";
}
.home-gioithieu-service:focus-within,
.home-gioithieu-service:hover{
    transform: translateY(-3px);
    border-color: rgba(0,173,34,0.24);
    box-shadow: 0 18px 36px rgba(21,35,29,0.12);
}
.home-gioithieu-service:hover:before{
    opacity: 1;
    box-shadow: 0 7px 18px rgba(40,169,95,0.18);
}
.home-gioithieu-icon{
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--brand-green-dark);
    background: linear-gradient(135deg, #f1fff4 0%, #fff7f6 100%);
    border: 1px solid rgba(0,173,34,0.22);
    border-radius: 10px;
    font-size: 28px;
    box-shadow: 0 12px 22px rgba(22,160,93,0.12);
    transition: transform .32s ease, color .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease;
    animation: homeIconPulse 3.8s ease-in-out infinite;
}
.home-gioithieu-service:hover .home-gioithieu-icon{
    transform: translateY(-1px);
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    border-color: rgba(37,168,93,0.22);
    box-shadow: 0 14px 26px rgba(22,160,93,0.22);
}
.home-gioithieu-service:hover .home-gioithieu-content h2{
    color: var(--brand-red);
}
.home-gioithieu-content{
    min-width: 0;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}
.home-gioithieu-content h2{
    margin: 0 0 8px;
    color: var(--brand-green);
    font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-content p{
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 26px;
}
@keyframes homeServiceFloat{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-4px);
    }
}
@keyframes homeIconPulse{
    0%, 100%{
        box-shadow: 0 12px 22px rgba(22,160,93,0.12);
    }
    50%{
        box-shadow: 0 16px 28px rgba(255,18,10,0.14);
    }
}
@media (prefers-reduced-motion: reduce){
    .home-gioithieu-service,
    .home-gioithieu-icon{
        animation: none;
    }
}
.home-gioithieu-promo{
    width: 100%;
    margin-top: 38px;
}
.home-gioithieu-promo-card{
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.10);
}
.home-gioithieu-promo-card:before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(0,173,34,0.10);
    border-radius: 14px;
    pointer-events: none;
}
.home-gioithieu-promo-card .row{
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
}
.home-gioithieu-promo-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 390px;
    padding: 52px 50px;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    background:
        linear-gradient(135deg, #fff 0%, #f2fff5 58%, #fff6f5 100%),
        radial-gradient(circle at 16% 10%, rgba(0,173,34,0.12), transparent 34%);
}
.home-gioithieu-promo-text:before{
    content: "";
    position: absolute;
    top: -68px;
    right: -70px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(255,18,10,0.07);
    border-radius: 50%;
}
.home-gioithieu-promo-label{
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 7px 14px;
    color: #fff;
    background: var(--brand-red);
    border-radius: 999px;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0;
}
.home-gioithieu-promo-text h2{
    max-width: 430px;
    margin: 0 0 18px;
    color: var(--brand-green);
    font-size: 30px;
    line-height: 39px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-promo-text p{
    max-width: 430px;
    margin: 0 0 18px;
    color: #26332d;
    font-size: 20px;
    line-height: 32px;
}
.home-gioithieu-promo-text strong{
    color: var(--brand-red);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}
.home-gioithieu-promo-note{
    max-width: 430px;
    color: var(--brand-red);
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
}
.home-gioithieu-promo-points{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 430px;
    margin-top: 18px;
}
.home-gioithieu-promo-points span{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: var(--brand-green-dark);
    background: rgba(0,173,34,0.06);
    border: 1px solid rgba(0,173,34,0.15);
    border-radius: 8px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}
.home-gioithieu-promo-points i{
    color: var(--brand-red);
    font-size: 12px;
}
.home-gioithieu-promo-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.home-gioithieu-promo-btn,
.home-gioithieu-promo-btn:hover,
.home-gioithieu-promo-btn:focus{
    display: inline-block;
    min-width: 146px;
    padding: 11px 20px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    transition: transform .26s ease, box-shadow .26s ease, background .26s ease, border-color .26s ease;
}
.promo-primary{
    color: #fff;
    background: var(--brand-red);
    box-shadow: 0 12px 24px rgba(255,18,10,0.20);
}
.promo-primary:hover,
.promo-primary:focus{
    transform: translateY(-2px);
    background: var(--brand-red-dark);
    box-shadow: 0 16px 30px rgba(255,18,10,0.28);
}
.promo-secondary{
    color: #fff;
    background: var(--brand-green);
    border: 1px solid rgba(0,173,34,0.22);
}
.promo-secondary:hover,
.promo-secondary:focus{
    transform: translateY(-2px);
    background: var(--brand-green-dark);
    border-color: rgba(0,173,34,0.34);
    box-shadow: 0 14px 26px rgba(0,173,34,0.14);
}
.home-gioithieu-promo-photo{
    min-height: 390px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: hidden;
}
.home-gioithieu-promo-photo img{
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: block;
    object-fit: cover;
    object-position: center 58%;
    filter: saturate(1.02) contrast(1.03);
    transition: transform .55s ease, filter .55s ease;
}
.home-gioithieu-promo-photo:after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,173,34,0.18), rgba(18,35,28,0.02) 44%, rgba(255,18,10,0.12)),
        linear-gradient(0deg, rgba(0,0,0,0.18), transparent 42%);
    pointer-events: none;
}
.home-gioithieu-promo-card:hover .home-gioithieu-promo-photo img{
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.05);
}
.home-gioithieu-promo-badge{
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    max-width: 280px;
    padding: 14px 20px 14px 16px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255,18,10,0.95) 0%, rgba(229,13,6,0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(255,18,10,0.35), inset 0 1px 1px rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .3s ease;
}
.home-gioithieu-promo-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 36px rgba(255,18,10,0.45), inset 0 1px 1px rgba(255,255,255,0.35);
}
.home-gioithieu-promo-badge .badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: badgeIconPulse 2s infinite ease-in-out;
}
.home-gioithieu-promo-badge .badge-text {
    flex: 1;
}
.home-gioithieu-promo-badge span{
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.home-gioithieu-promo-badge strong{
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 0.2px;
}
@keyframes badgeIconPulse {
    0%, 100% {
        transform: scale(1);
        background: rgba(255,255,255,0.2);
    }
    50% {
        transform: scale(1.08);
        background: rgba(255,255,255,0.32);
    }
}
.home-gioithieu-why{
    padding: 54px 0 22px;
}
.home-gioithieu-section-title{
    margin: 0 0 38px;
    color: #222;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-section-title span{
    color: var(--brand-green);
}
.home-gioithieu-why-list{
    row-gap: 24px;
}
.home-gioithieu-why-list [class*="col-"]{
    display: flex;
}
.home-gioithieu-why-item{
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    transform: translateY(0);
    transition: transform .35s ease, box-shadow .35s ease;
}
.home-gioithieu-why-item:before{
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-green));
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .35s ease, transform .35s ease;
}
.home-gioithieu-why-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.14);
}
.home-gioithieu-why-item:hover:before{
    opacity: 1;
    transform: scaleX(1);
}
.home-gioithieu-why-img{
    height: 182px;
    overflow: hidden;
    background: #f4f4f4;
    position: relative;
}
.home-gioithieu-why-img:after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.22) 100%);
    opacity: .65;
    transition: opacity .35s ease;
}
.home-gioithieu-why-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease, filter .55s ease;
}
.home-gioithieu-why-item:hover .home-gioithieu-why-img:after{
    opacity: .35;
}
.home-gioithieu-why-item:hover .home-gioithieu-why-img img{
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.03);
}
.home-gioithieu-why-icon{
    width: 74px;
    height: 74px;
    line-height: 64px;
    margin: -37px auto 18px;
    position: relative;
    z-index: 2;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    border: 6px solid #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(45,191,101,0.28);
    transition: transform .35s ease, box-shadow .35s ease;
}
.home-gioithieu-why-icon:after{
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(120,209,43,0.28);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.75);
    transition: opacity .35s ease, transform .35s ease;
}
.home-gioithieu-why-item:hover .home-gioithieu-why-icon{
    transform: translateY(-3px) rotate(4deg);
    box-shadow: 0 14px 24px rgba(45,191,101,0.36);
}
.home-gioithieu-why-item:hover .home-gioithieu-why-icon:after{
    opacity: 1;
    transform: scale(1);
}
.home-gioithieu-why-item h3{
    margin: 0 18px 13px;
    color: #2d2d2d;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-why-item p{
    margin: 0;
    padding: 0 22px 30px;
    color: #444;
    font-size: 15px;
    line-height: 24px;
}
.home-gioithieu-process{
    width: 100%;
    margin-top: 42px;
    padding: 62px 0 58px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(0,173,34,0.10), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(255,18,10,0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5faf6 100%);
}
.home-gioithieu-process-head{
    margin: 0 auto 40px;
    text-align: center;
}
.home-gioithieu-process-kicker{
    display: inline-block;
    margin: 0 0 14px;
    padding: 7px 15px;
    color: #fff;
    background: var(--brand-red);
    border-radius: 999px;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-process-head h2{
    margin: 0 0 16px;
    color: var(--brand-green);
    font-size: 32px;
    line-height: 41px;
    text-transform: uppercase;
    font-weight: 800;
}
.home-gioithieu-process-head h2 span{
    color: var(--brand-red);
}
.home-gioithieu-process-head h2:after{
    display: none;
}
.home-gioithieu-process-head p{
    max-width: 880px;
    margin: 0 auto;
    color: #34443d;
    font-size: 16px;
    line-height: 28px;
}
.home-gioithieu-process-list{
    row-gap: 24px;
    position: relative;
    z-index: 1;
}
.home-gioithieu-process-list [class*="col-"]{
    display: flex;
    margin-bottom: 24px;
}
.home-gioithieu-process-item{
    width: 100%;
    min-height: 220px;
    min-width: 0;
    padding: 30px 28px 28px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, #fff 0%, #f8fbf9 100%),
        radial-gradient(circle at 100% 0, rgba(0,173,34,0.08), transparent 32%);
    border: 1px solid rgba(0,173,34,0.10);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.14);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.home-gioithieu-process-item:before{
    display: none;
}
.home-gioithieu-process-item:hover{
    transform: translateY(-5px);
    border-color: rgba(255,18,10,0.22);
    box-shadow: 0 24px 48px rgba(0,0,0,0.13);
}
.home-gioithieu-process-item:after{
    display: none;
}
.home-gioithieu-process-index{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    color: #fff;
    background: var(--brand-red);
    border-radius: 14px;
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(255,18,10,0.20);
    position: relative;
    z-index: 1;
}
.home-gioithieu-process-item h3{
    margin: 0 0 14px;
    color: #12231c;
    font-size: 17px;
    line-height: 27px;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    z-index: 1;
}
.home-gioithieu-process-item p{
    margin: 0;
    color: #34443d;
    font-size: 15px;
    line-height: 27px;
    position: relative;
    z-index: 1;
}
.home-gioithieu-process-item p strong{
    color: #d71920;
}
.home-gioithieu-process-actions{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 22px auto 0;
}
.process-btn,
.process-btn:focus,
.process-btn:hover{
    min-width: 190px;
    padding: 12px 26px;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    transition: transform .26s ease, box-shadow .26s ease, background .26s ease;
}
.process-contact{
    background: var(--brand-green);
    box-shadow: 0 12px 24px rgba(0,173,34,0.20);
}
.process-hotline{
    color: #fff;
    background: var(--brand-red);
    box-shadow: 0 12px 24px rgba(255,18,10,0.22);
}
.process-btn:hover{
    transform: translateY(-2px);
}
.process-contact:hover{
    background: var(--brand-green-dark);
    box-shadow: 0 16px 30px rgba(0,173,34,0.25);
}
.process-hotline:hover{
    color: #fff;
    background: var(--brand-red-dark);
    box-shadow: 0 16px 30px rgba(255,18,10,0.30);
}
@media (max-width: 991px){
    .home-gioithieu{
        margin: 15px 0 25px;
    }
    .home-gioithieu-services{
        padding: 0;
    }
    .home-gioithieu-services .row{
        margin-left: -8px;
        margin-right: -8px;
    }
    .home-gioithieu-services [class*="col-"]{
        padding-left: 8px;
        padding-right: 8px;
    }
    .home-gioithieu-service{
        padding: 22px 18px;
        margin-bottom: 16px;
    }
    .home-gioithieu-services [class*="col-"] .home-gioithieu-service{
        padding-left: 18px;
        padding-right: 18px;
    }
    .home-gioithieu-services [class*="col-"]:last-child .home-gioithieu-service{
        margin-bottom: 0;
    }
    .home-gioithieu-promo-text{
        min-height: 0;
        padding: 36px 32px;
    }
    .home-gioithieu-promo-text h2{
        font-size: 24px;
        line-height: 31px;
    }
    .home-gioithieu-promo-text p{
        font-size: 18px;
        line-height: 29px;
    }
    .home-gioithieu-promo-points{
        margin-top: 16px;
    }
    .home-gioithieu-promo-photo,
    .home-gioithieu-promo-photo img{
        min-height: 260px;
    }
    .home-gioithieu-process-head h2{
        font-size: 24px;
        line-height: 32px;
    }
    .home-gioithieu-process-item{
        min-height: 0;
        padding: 24px;
    }
}
@media (max-width: 575px){
    .home-gioithieu-services{
        padding: 0;
    }
    .home-gioithieu-service{
        gap: 14px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .home-gioithieu-icon{
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 22px;
    }
    .home-gioithieu-content h2{
        font-size: 15px;
        line-height: 21px;
    }
    .home-gioithieu-content p{
        font-size: 14px;
        line-height: 22px;
    }
    .home-gioithieu-promo-text{
        padding: 24px;
    }
    .home-gioithieu-promo-text h2{
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 14px;
    }
    .home-gioithieu-promo-text p{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .home-gioithieu-promo-note{
        font-size: 15px;
        line-height: 22px;
    }
    .home-gioithieu-promo-photo,
    .home-gioithieu-promo-photo img{
        min-height: 190px;
    }
    .home-gioithieu-promo-actions{
        gap: 10px;
        margin-top: 18px;
    }
    .home-gioithieu-promo-points{
        gap: 8px;
    }
    .home-gioithieu-promo-points span{
        width: 100%;
    }
    .home-gioithieu-promo-btn,
    .home-gioithieu-promo-btn:hover,
    .home-gioithieu-promo-btn:focus{
        width: 100%;
    }
    .home-gioithieu-promo-badge{
        right: 14px;
        bottom: 14px;
        max-width: 240px;
        padding: 10px 14px 10px 10px;
        gap: 8px;
    }
    .home-gioithieu-promo-badge .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .home-gioithieu-promo-badge strong {
        font-size: 13px;
        line-height: 18px;
    }
    .home-gioithieu-why{
        padding: 34px 0 10px;
    }
    .home-gioithieu-section-title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 24px;
    }
    .home-gioithieu-why-img{
        height: 190px;
    }
    .home-gioithieu-process{
        margin-top: 30px;
        padding: 38px 0 38px;
    }
    .home-gioithieu-process-head{
        margin-bottom: 24px;
    }
    .home-gioithieu-process-head h2{
        font-size: 21px;
        line-height: 29px;
    }
    .home-gioithieu-process-head p{
        font-size: 14px;
        line-height: 24px;
    }
    .home-gioithieu-process-item h3{
        font-size: 16px;
        line-height: 25px;
    }
    .home-gioithieu-process-index{
        width: 50px;
        height: 50px;
        margin-bottom: 24px;
        font-size: 20px;
    }
    .home-gioithieu-process-actions{
        flex-direction: column;
        gap: 12px;
    }
}
