        /* 关于我们区域 */
        .about-section {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title span {
            display: block;
            font-size: 18px;
            color: var(--primary-orange);
            margin-bottom: 10px;
            position: relative;
        }

        .section-title span::before,
        .section-title span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: var(--primary-orange);
        }

        .section-title span::before {
            left: calc(50% - 120px);
        }

        .section-title span::after {
            right: calc(50% - 120px);
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .section-title p {
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }

        /* 内容区域 */
        .about-container {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-content {
            flex: 1;
        }

        .about-content h3 {
            font-size: 28px;
            color: var(--dark-blue);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .about-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            border-radius: 2px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 17px;
        }

        .company-highlights {
            margin: 30px 0;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .highlight-icon i {
            color: var(--primary-orange);
            font-size: 20px;
        }

        .highlight-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark-blue);
        }

        .highlight-text p {
            color: var(--text-medium);
            font-size: 16px;
        }

        .about-cta {
            display: inline-block;
            background: var(--primary-orange);
            color: white;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            margin-top: 10px;
            font-size: 16px;
            border: 2px solid var(--primary-orange);
        }

        .about-cta:hover {
            background: transparent;
            color: var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
        }

        /* 视频区域 */
        .about-video {
            flex: 1;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url('/skin/img/xingshan-machinery-facility.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover {
            transform: scale(1.02);
        }

        .video-play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .video-play-btn:hover {
            background: var(--primary-orange);
            transform: scale(1.1);
        }

        .video-play-btn i {
            color: var(--primary-orange);
            font-size: 30px;
            margin-left: 5px;
        }

        .video-play-btn:hover i {
            color: white;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
        }

        .video-overlay h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .video-overlay p {
            font-size: 14px;
            opacity: 0.8;
        }

        /* 视频弹出层 */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .video-container {
            width: 80%;
            max-width: 900px;
            position: relative;
        }

        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-video:hover {
            color: var(--primary-orange);
        }

        .video-iframe {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            position: relative;
        }

        .video-iframe iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-video {
                width: 100%;
                order: -1;
				flex: none;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .about-content h3 {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .section-title span::before,
            .section-title span::after {
                width: 30px;
            }
            
            .section-title span::before {
                left: calc(50% - 90px);
            }
            
            .section-title span::after {
                right: calc(50% - 90px);
            }
            
            .about-video {
                height: 350px;
				flex: none;
            }
            
            .highlight-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .highlight-icon {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-title span {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .about-video {
                height: 280px;
				flex: none;
            }
            
            .video-play-btn {
                width: 70px;
                height: 70px;
            }
            
            .video-overlay {
                padding: 15px;
            }
            
            .video-overlay h4 {
                font-size: 18px;
            }
        }
        /* 数据展示区域 */
        .stats-section {
            padding: 80px 20px;
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .stat-item {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .stat-item:hover::before {
            transform: scaleX(1);
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .stat-item:hover .stat-icon {
            background: var(--primary-orange);
            transform: scale(1.1);
        }
        
        .stat-icon i {
            font-size: 36px;
            color: var(--primary-orange);
            transition: var(--transition);
        }
        
        .stat-item:hover .stat-icon i {
            color: white;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .stat-number i {
            font-style: normal;
            font-size: 42px;
        }
        
        .stat-number .plus {
            font-size: 28px;
            vertical-align: super;
            margin-left: 3px;
        }
        
        .stat-label {
            font-size: 18px;
            color: var(--text-medium);
            font-weight: 500;
        }
        
        /* 背景装饰元素 */
        .stats-decoration {
            position: absolute;
            z-index: 0;
            opacity: 0.05;
        }
        
        .decoration-1 {
            top: 50px;
            left: 5%;
            width: 150px;
            height: 150px;
            border: 20px solid var(--primary-orange);
            border-radius: 50%;
        }
        
        .decoration-2 {
            bottom: 50px;
            right: 5%;
            width: 100px;
            height: 100px;
            border: 15px solid var(--primary-orange);
            border-radius: 50%;
        }
        
        .decoration-3 {
            top: 30%;
            right: 15%;
            width: 70px;
            height: 70px;
            background: var(--primary-orange);
            border-radius: 50%;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .stat-item {
                min-width: 200px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .stat-icon {
                width: 70px;
                height: 70px;
            }
        }
        
        @media (max-width: 768px) {
            .stats-section {
                padding: 60px 20px;
            }
            
            .stats-container {
                gap: 20px;
            }
            
            .stat-item {
                min-width: calc(50% - 20px);
                max-width: calc(50% - 20px);
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .stat-item {
                min-width: 100%;
                max-width: 300px;
            }
            
            .stat-number {
                font-size: 32px;
            }
            
            .stat-label {
                font-size: 16px;
            }
        }
        /* 公司场地展示区域 */
        .facility-showcase {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(rgba(10, 42, 94, 0.9), rgba(10, 42, 94, 0.9)), 
                        url('https://images.unsplash.com/photo-1520013817300-1f4c1cb245ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            overflow: hidden;
        }

        .facility-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .facility-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .facility-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .facility-title h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .facility-title p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.85);
        }

        .facility-title span {
            display: block;
            font-size: 18px;
            color: var(--primary-orange);
            margin-bottom: 10px;
            position: relative;
        }

        .facility-title span::before,
        .facility-title span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: var(--primary-orange);
        }

        .facility-title span::before {
            left: calc(50% - 120px);
        }

        .facility-title span::after {
            right: calc(50% - 120px);
        }

        /* 展示网格 */
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .facility-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: 300px;
            transition: var(--transition);
			cursor: pointer;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .facility-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
        }
/* 图片放大模态框 - 新增样式 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 20px;
}
        .facility-card:hover .facility-img {
            transform: scale(1.1);
        }

        .facility-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
        }

        .facility-info h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .facility-info p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 0;
        }

        /* 公司信息 */
        .company-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 40px;
            max-width: 1000px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 107, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-icon i {
            color: var(--primary-orange);
            font-size: 24px;
        }

        .info-text h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: white;
        }

        .info-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .company-cta {
            display: inline-block;
            background: var(--primary-orange);
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            margin-top: 30px;
            transition: var(--transition);
            border: 2px solid var(--primary-orange);
        }

        .company-cta:hover {
            background: transparent;
            color: var(--primary-orange);
            transform: translateY(-5px);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .facility-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .facility-title h2 {
                font-size: 32px;
            }
            
            .facility-card {
                height: 260px;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .facility-grid {
                grid-template-columns: 1fr;
            }
            
            .facility-card {
                height: 300px;
            }
            
            .facility-title span::before,
            .facility-title span::after {
                width: 30px;
            }
            
            .facility-title span::before {
                left: calc(50% - 90px);
            }
            
            .facility-title span::after {
                right: calc(50% - 90px);
            }
        }

        @media (max-width: 576px) {
            .facility-showcase {
                padding: 70px 0;
            }
            
            .facility-title h2 {
                font-size: 28px;
            }
            
            .facility-title p {
                font-size: 16px;
            }
            
            .company-info {
                padding: 25px;
            }
            
            .info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .info-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .facility-card {
                height: 250px;
            }
        }

        /* 采购流程区域 */
        .purchase-section {
            padding: 100px 20px;
            background: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: var(--primary-orange);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--primary-orange);
        }
        
        .section-heading {
            font-size: 38px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            color: var(--text-medium);
        }
        
        /* 采购流程步骤 */
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-timeline {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: calc(100% - 100px);
            background: linear-gradient(to bottom, var(--primary-blue), var(--primary-orange));
            z-index: 1;
        }
        
        .process-steps {
            position: relative;
            z-index: 2;
        }
        
        .step-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }
        
        .step-card {
            width: calc(50% - 60px);
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .step-card.left {
            text-align: right;
        }
        
        .step-number {
            position: absolute;
            top: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            z-index: 3;
        }
        
        .step-card.right .step-number {
            left: -50px;
        }
        
        .step-card.left .step-number {
            right: -50px;
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(10, 42, 94, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-blue);
            font-size: 28px;
            transition: var(--transition);
        }
        
        .step-card:hover .step-icon {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .step-card.left .step-icon {
            margin-left: auto;
        }
        
        .step-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        .step-description {
            color: var(--text-medium);
            margin-bottom: 15px;
        }
        
        .step-highlight {
            color: var(--primary-orange);
            font-weight: 500;
        }
        
        /* 付款方式区域 */
        .payment-section {
            padding: 100px 20px;
            background: var(--light-gray);
        }
        
        .payment-methods {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .payment-card {
            background: var(--white);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary-blue);
        }
        
        .payment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .payment-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary-orange);
            transition: var(--transition);
        }
        
        .payment-card:hover .payment-icon {
            background: var(--primary-orange);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .payment-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        .payment-details {
            color: var(--text-medium);
            margin-bottom: 20px;
        }
        
        .payment-note {
            background: rgba(10, 42, 94, 0.05);
            padding: 15px;
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-medium);
            text-align: left;
            margin-top: 20px;
        }
        
        /* 公司优势标签 */
        .advantages-section {
            padding: 60px 20px;
            background: var(--primary-blue);
            color: var(--white);
        }
        
        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .advantage-tag {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 15px 25px;
        }
        
        .advantage-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }
        
        .advantage-text {
            font-size: 18px;
            font-weight: 500;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-container {
				padding: 0 15px;
			}
			
			.process-timeline {
				left: 30px;
				height: calc(100% - 60px);
				background: linear-gradient(to bottom, var(--primary-blue), var(--primary-orange));
			}
			
			.process-steps {
				padding-left: 40px;
			}
    
            
            .step-row {
				flex-direction: column;
				margin-bottom: 0;
			}
			
			.step-card {
				width: 100% !important;
				margin-left: 0;
				margin-bottom: 40px;
				text-align: left !important;
				padding: 25px;
				box-shadow: 0 5px 15px rgba(0,0,0,0.08);
			}
			
			.step-card:last-child {
				margin-bottom: 0;
			}
			
			.step-card.left .step-number,
			.step-card.right .step-number {
				left: -60px;
				right: auto;
				top: 25px;
				width: 40px;
				height: 40px;
				font-size: 18px;
			}
			
			.step-icon {
				width: 60px;
				height: 60px;
				font-size: 24px;
				margin-bottom: 15px;
			}
			
			.step-title {
				font-size: 20px;
			}
			
			.step-description {
				font-size: 15px;
				line-height: 1.5;
			}
        }
        
        @media (max-width: 768px) {
			.purchase-section {
				padding: 60px 15px;
			}
			.section-header {
				margin-bottom: 40px;
			}
            .section-heading {
                font-size: 26px;
            }
            
            .section-subtitle {
				font-size: 15px;
			}
			
			.process-timeline {
				left: 20px;
				width: 3px;
			}
			
			.process-steps {
				padding-left: 30px;
			}
			
			.step-card {
				padding: 20px;
				margin-bottom: 35px;
			}
			
			.step-card.left .step-number,
			.step-card.right .step-number {
				left: -45px;
				width: 35px;
				height: 35px;
				font-size: 16px;
			}
			
			.step-icon {
				width: 50px;
				height: 50px;
				font-size: 22px;
			}
			
			.step-title {
				font-size: 18px;
			}
			
			.step-description {
				font-size: 14px;
			}
			
			.step-highlight {
				font-weight: 600;
			}
            
            .payment-methods {
                grid-template-columns: 1fr;
            }
            
            .advantages-container {
                gap: 15px;
            }
            
            .advantage-tag {
                padding: 12px 20px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .purchase-section, 
            .payment-section {
                padding: 70px 15px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .section-heading {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
            
            .step-card {
                width: calc(100% - 60px);
                
            }
            
            .step-card.left .step-number,
            .step-card.right .step-number {
                left: -50px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .advantage-tag {
                width: 100%;
            }
        }