﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #1560c5;
}

a {
    text-decoration: none;
    color: #1560c5 !important;
}

.container {
    max-width: 1320px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.btn {
    background-color: #cf2030;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 13px;
    box-shadow: 3.06px 2.57px 5px rgba(0, 0, 0, 0.25);
    padding: 16px 0;
    font-size: 37px;
    font-weight: 500;
}

    .btn p {
        color: #fff;
    }

    .btn img {
        width: 44px;
        height: 44px;
    }

.sc-detail-service {
    padding: 80px 0;
    background: #fff;
}

.sc-detail-service-inner .h2-title {
    font-size: 48px;
    font-weight: 700;
    color: #1560c5;
    text-align: center;
    margin-bottom: 30px;
}

    .sc-detail-service-inner .h2-title span {
        color: #1560c5;
    }

.sc-detail-service-inner .txt-intro {
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

    .sc-detail-service-inner .txt-intro span {
        color: #1560c5;
        font-weight: 700;
    }

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

@media (max-width: 992px) {
    .service-items {
        grid-template-columns: 1fr;
    }
}

.service-item {
    width: 100%;
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
    }

    .service-item .service-icon {
        flex: 0 0 100px;
        margin-right: 20px;
    }

        .service-item .service-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

    .service-item .service-content {
        flex: 1;
    }

        .service-item .service-content .service-title {
            font-size: 32px;
            font-weight: 700;
            color: #1560c5;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-item .service-content .service-desc p {
            font-size: 24px;
            line-height: 1.5;
            color: #000;
            margin-bottom: 15px;
        }

        .service-item .service-content .service-desc ul {
            padding-left: 20px;
            list-style: disc;
        }

            .service-item .service-content .service-desc ul li {
                font-size: 24px;
                line-height: 1.5;
                color: #000;
                margin-bottom: 8px;
            }

.cta-section {
    text-align: center;
    padding: 40px 0;
    position: fixed;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .cta-section .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .cta-section .cta-buttons .btn {
            width: 200px;
            padding: 12px 20px;
            border-radius: 13px 13px 0 0;
            box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            transform: rotate(-90deg);
            transform-origin: left bottom;
/*            justify-content: space-between;*/
        }

            .cta-section .cta-buttons .btn:hover {
/*                right: -120px;*/
                transform: rotate(-90deg) translateY(-10px);
            }

            .cta-section .cta-buttons .btn p {
                color: #fff;
                font-size: 18px;
                font-weight: 500;
                margin: 0 10px 0 0;
                white-space: nowrap;
            }

            .cta-section .cta-buttons .btn img {
                width: 24px;
                height: 24px;
            }

        .cta-section .cta-buttons .btn-register-now {
            background-color: #cf2030;
            margin-bottom: 150px;
        }

        .cta-section .cta-buttons .btn-calendar-event {
            background-color: #1560c5;
        }

@media (max-width: 992px) {
    .sc-detail-service-inner .h2-title {
        font-size: 40px;
    }

    .sc-detail-service-inner .txt-intro {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .sc-detail-service {
        padding: 20px 0;
    }
    .sc-detail-service-inner .h2-title {
        font-size: 24px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .service-item .service-icon {
        flex: 0 0 80px;
    }
    .sc-detail-service-inner .txt-intro {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .service-item .service-content .service-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-item .service-content .service-desc p {
        font-size: 18px;
    }

    .service-item .service-content .service-desc ul li {
        font-size: 18px;
    }

    .service-items {
        gap: 10px;
    }

    .service-item {
        flex-direction: column;
        padding: 0;
    }

        .service-item .service-icon {
            margin-right: 0;
            text-align: center;
        }

    .cta-section p {
        font-size: 14px !important;
    }

    .cta-section .cta-buttons .btn {
        padding: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .service-item .service-content .service-desc p {
        font-size: 18px;
    }
    .service-item .service-content .service-desc ul li {
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .service-item .service-content .service-desc p {
        font-size: 16px;
    }

    .service-item .service-content .service-desc ul li {
        font-size: 16px;
    }
}