.accreditation-page {
    font-family: Archivo, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #323232;
    background-color: #FFFFFF;
}

.nowrap {
    white-space: nowrap;
}

.primary-color {
    color: #075397;
}

a:hover {
    text-decoration: unset;
    color: inherit;
}

.section-p {
    padding: 60px 0;
}

.default-title {
    font-family: Barlow Bold;
    font-size: 32px;
    text-align: center;
    padding-bottom: 24px;
    margin: 0 auto;
}

.default-des {
    font-family: Barlow Medium;
    text-align: center;
    color: #000;
    margin: 0 auto;
}

@media (max-width: 979px) {
    .default-title {
        font-size: 28px;
        padding-bottom: 16px;
    }

    .section-p {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #region Hero */
.hero {
    background: url(/sites/cukcuk/images/pages/accreditation/bg-hero.webp) no-repeat center;
    background-size: cover;
    padding: 85px 0;
    color: #FFF;
    margin-top: 150px;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-family: Barlow Bold;
    font-size: 48px;
    padding-bottom: 16px;
}

.hero-desc {
    font-family: Archivo Medium;
    padding-bottom: 24px;
    text-align: justify;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

a.btn-base {
    display: block;
    width: fit-content;
    font-family: Archivo Medium;
    font-size: 14px;
    color: #FFF;
    line-height: 16px;
    padding: 12px 24px;
    border-radius: 20px;
}

a.btn-demo {
    background-color: #0967B9;
    border: 1px solid #0967B9;
}

a.btn-price {
    border: 1px solid #FFF;
}

/* Responsive styles for hero section */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        margin-top: 100px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        padding-bottom: 12px;
    }

    .hero-desc {
        font-size: 15px;
        padding-bottom: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    a.btn-base {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .hero-desc {
        font-size: 14px;
        padding-bottom: 16px;
        text-align: center;
    }

    a.btn-base {
        font-size: 13px;
        padding: 10px 20px;
    }
}
/* #endregion */

/* #region partner */
.partner .default-des {
    max-width: 708px;
}

.partner-image {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}
/* #endregion */

/* #region operations */
.operations {
    position: relative;
}

.bg-blue {
    background-color: #0973B9;
    border-radius: 0 35px 35px 0;
    height: 402px;
    width: 46%;
    position: absolute;
    top: 30%;
    z-index: 1;
}

.operations .default-des {
    max-width: 615px;
    padding-bottom: 32px;
}

.operations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.operations-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.operations-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0px 4px 18.7px 5px rgba(0, 0, 0, 0.3);
}

.operations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operations-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.operations-icon {
    width: 29px;
    height: 27px;
    flex-shrink: 0;
    margin-top: 2px;
}

.operations-text {
    font-family: Barlow Medium, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #323232;
}

.operations-text strong {
    font-family: Archivo Bold;
    color: #000;
}

@media (max-width: 979px) {
    .operations-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .operations .default-des {
        padding-bottom: 32px;
    }

    .bg-blue {
        display: none;
    }
}

@media (max-width: 767px) {
    .operations .default-des {
        padding-bottom: 24px;
    }

    .operations-content {
        gap: 32px;
    }

    .operations-icon {
        width: 25px;
        height: 23.5px;
    }

}

@media (max-width: 480px) {
    .operations-text {
        font-size: 14px;
    }
}
/* #endregion */

/* #region benefit */
.benefit {
    background: linear-gradient(180deg, #FFFFFF 42.92%, #0973B9 100%);
}

.benefit .default-des {
    max-width: 800px;
    padding-bottom: 40px;
}

.benefit-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-item {
    background-color: #FFFFFF;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item-blue {
    background-color: #0967B9;
    color: #FFFFFF;
}

.benefit-title {
    font-family: Barlow Bold, Arial, sans-serif;
    font-size: 18px;
    color: #000;
    padding-bottom: 12px;
}

.benefit-item-blue .benefit-title {
    color: #FFFFFF;
}

.benefit-desc {
    font-family: Barlow Medium, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #323232;
}

.benefit-item-blue .benefit-desc {
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .benefit-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 979px) {
    .benefit .default-des {
        padding-bottom: 32px;
    }

    .benefit-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .benefit-item {
        padding: 28px 16px;
    }

    .benefit-title {
        font-size: 17px;
        padding-bottom: 10px;
    }

    .benefit-desc {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .benefit .default-des {
        padding-bottom: 24px;
    }

    .benefit-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 24px 20px;
    }

    .benefit-title {
        font-size: 16px;
    }
}
/* #endregion */

/* #region customer */
.customer .default-title {
    max-width: 690px;

}

.customer .default-des {
    max-width: 540px;
}

.customer-image {
    margin-top: 32px;
}
/* #endregion */

/* #region get-started */
.get-started {
    background-color: #0967B9;
    color: #FFFFFF;
    padding-bottom: 0;
}

.get-started .container {
    max-width: 640px;
}

.get-started-content {
    position: relative;
    padding-top: 24px;
    padding-bottom: 54px;
}

.get-started .bg-white {
    background-color: #FFF;
}

.get-started-title {
    font-family: Barlow Bold, Arial, sans-serif;
    font-size: 32px;
    padding: 10px 0 18px;
}

.get-started-title .large {
    font-family: Barlow Black, Arial, sans-serif;
    font-size: 52px;
}

.get-started-brand {
    color: #ECAC19;
}

.get-started-steps {
    display: flex;
    flex-direction: column;
}

.step-item {
    padding: 12px 0;
    border-bottom: 2px solid #FFF;
    min-width: 339px;
    width: fit-content;
}

.step-item:first-child {
    padding-top: 0;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    position: relative;
}

.step-title {
    font-family: Barlow Bold, Arial, sans-serif;
    font-size: 24px;
    color: #FFA500;
}

.step-line {
    position: absolute;
    right: -89px;
    height: auto;
    bottom: -90px;
}

.step-desc {
    font-family: Barlow Bold, Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5;
}

.get-started-right {
    position: absolute;
    bottom: 0;
    right: -60px;
}

.get-started-right img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .get-started-right {
        display: none;
    }

    .step-item {
        width: 100%;
    }
}
/* #endregion */
