.main-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.main-page-title {
    font-size: 31px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.main-page-title span {
    color: #007bff;
}

.checked-features {
    margin-bottom: 20px;
}

.checked-features p {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.checked-features p:before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.buttons-container {
    display: flex;
    gap: 20px;
}

.rounded-button {
    padding: 15px 40px;
    margin-bottom: 20px; 
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}


.rounded-button:first-child {
    background: #007bff;
    color: white;
}

.rounded-button.transparent-button {
    border: 2px solid #007bff;
    color: #007bff;
}

.rounded-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


#top-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#top-services .title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

#top-services .txt {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.top-services-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.top-services-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Thêm container flex cho icon và tiêu đề */
.top-services-box-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.top-services-box-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.top-services-box:hover .top-services-box-img {
    transform: scale(1.1);
}

.top-services-box h2.title {
    font-size: 24px;
    margin: 0;
}

.top-services-box h2.title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-services-box h2.title a:hover {
    color: #007bff;
}

.top-service-txt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Slick Slider Custom Styles */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:before, .slick-next:before {
    color: #333;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    color: #007bff;
}

.slick-dots li.slick-active button:before {
    color: #007bff;
}

/* Responsive styles */
@media (max-width: 768px) {
    #top-services .title {
        font-size: 28px;
    }
    
    .top-services-box {
        padding: 20px;
        margin: 10px;
    }
    
    .top-services-box h2.title {
        font-size: 20px;
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}




.video-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.video-container .ratio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

/* Responsive styles for video section */
@media (max-width: 768px) {
    #video-section {
        padding: 40px 0;
    }
    
    #video-section .title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .video-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        aspect-ratio: 16/9;
    }
}
