.awards-btb-about-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 50px 20px;
            border-radius: 8px;
        }

        .awards-btb-about-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .awards-btb-about-title {
            font-size: 32px;
            font-weight: 700;
            color: #000;
        }

        .awards-btb-about-navigation {
            display: flex;
            gap: 10px;
        }

        .awards-btb-about-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: #f0f0f0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .awards-btb-about-nav-btn:hover {
            background: #e0e0e0;
        }

        .awards-btb-about-nav-btn.active-btb-about {
            background: #34ACE1;
            color: white;
        }

        .awards-btb-about-nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .awards-btb-about-swiper {
            padding: 0 20px 50px;
            position: relative;
        }

        .awards-btb-about-swiper::before {
            content: '';
            position: absolute;
            top: 337px;
            left: 0;
            right: 0;
            height: 2px;
            background: #DDDDDD;
            z-index: 0;
        }

        .awards-btb-about-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .awards-btb-about-image-container {
            width: 100%;
            max-width: 280px;
            height: 280px;
            background: #e8e8e8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .awards-btb-about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .awards-btb-about-indicator-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 15px;
        }

        .awards-btb-about-indicator-line-top {
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, #E43F6A, #EC7C4D);
        }

        .awards-btb-about-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: white;
            position: relative;
            margin: 0;
        }

        .awards-btb-about-indicator::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            background: linear-gradient(to bottom, #E43F6A, #EC7C4D);
            z-index: -1;
        }

        .awards-btb-about-indicator-line-bottom {
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, #E43F6A, #EC7C4D);
        }

        .awards-btb-about-award-title {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .awards-btb-about-award-description {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            max-width: 280px;
        }

        .swiper-pagination-btb-about {
            bottom: 0 !important;
        }

        .swiper-pagination-bullet-btb-about {
            width: 8px;
            height: 8px;
            background: #ccc;
            opacity: 1;
        }

        .swiper-pagination-bullet-active-btb-about {
            background: #00bcd4;
            width: 24px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .awards-btb-about-title {
                font-size: 24px;
            }

            .awards-btb-about-image-container {
                max-width: 240px;
                height: 240px;
            }
        }