 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
 .about-section {
            display: flex;
            align-items: center;
            margin: 60px 0;
        }

 .about-left {
            flex: 1;
            position: relative;
        }
        .cube-img {
            width: 100%;
            border-radius: 6px;
        }
        .tag {
            position: absolute;
            background-color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            font-size: 14px;
            font-weight: 500;
        }
        .tag-dubai {
            top: 20px;
            right: 40px;
        }
        .tag-montenegro {
            bottom: 30px;
            left: 50px;
        }
        .about-right {
            flex: 1;
            padding: 0 40px;
        }
        .about-title {
            font-size: 32px;
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .about-desc {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
        }
        /* 响应式调整 */
        @media (max-width: 768px) {
            .culture-section, .destination-section, .about-section {
                flex-direction: column;
            }
            .culture-left, .culture-right, .destination-img, .destination-info, .about-left, .about-right {
                width: 100%;
                padding: 0;
                margin-bottom: 20px;
            }
            .culture-right {
                grid-template-columns: repeat(2, 1fr);
            }
            .destination-info, .about-right {
                padding: 20px 0;
            }
        }