/* Page-specific styles: special-promotions.css */

/* General Resets */

        body {
            font-family: 'Alibaba-PuHuiTi-Regular', sans-serif;
            background-color: #FFFFFF;
            width: 100%;
            margin: 0 auto;
            color: #2C3E50;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #98c9a3 0%, #77bfa3 100%);
            padding: 5px 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=2000&auto=format&fit=crop') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            mix-blend-mode: overlay;
        }

        .breadcrumb {
            display: none !important;
        }

        .hero h1 {
            font-family: 'NotoSerifCJKsc-Bold', serif;
            font-size: clamp(32px, 5vw, 56px);
            margin-bottom: 15px;
            color: #2C3E50;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 22px;
            color: #2C3E50;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .limited-time-badge {
            background-color: #edeec9;
            color: #2C3E50;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: bold;
            display: inline-block;
            font-size: 14px;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Key Features */
        .key-features {
            background-color: #edeec9;
            padding: 60px 0;
        }

        .features-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 280px;
            transition: transform 0.3s;
            border: 1px solid rgba(119, 191, 163, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            font-size: 36px;
            color: #77bfa3;
            margin-bottom: 15px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: bold;
            color: #2C3E50;
        }

        /* Promotional Loan Details */
        .promo-section {
            padding: 100px 0;
            background-color: #FFFFFF;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'NotoSerifCJKsc-Bold', serif;
            font-size: 42px;
            color: #2C3E50;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 20px;
            font-style: italic;
            color: #77bfa3;
        }

        .loans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .loan-card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 40px;
            border: 3px solid #77bfa3;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .loan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(119, 191, 163, 0.2);
        }

        .promo-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: #77bfa3;
            color: white;
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .loan-name {
            font-size: 28px;
            font-weight: bold;
            color: #2C3E50;
            margin-bottom: 20px;
            font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
        }

        .divider {
            height: 2px;
            background-color: #77bfa3;
            width: 60px;
            margin: 0 auto 25px;
            opacity: 0.6;
        }

        .loan-amount {
            font-size: 42px;
            font-weight: bold;
            color: #77bfa3;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .loan-detail {
            font-size: 20px;
            color: #555;
            margin-bottom: 8px;
        }

        .loan-icon-wrapper {
            margin: 25px 0;
            color: #98c9a3;
            font-size: 48px;
        }

        .card-btn {
            width: 100%;
            background-color: #77bfa3;
            color: white;
            border: none;
            padding: 16px;
            font-size: 18px;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 10px;
            margin-bottom: 15px;
            font-weight: 600;
            transition: background 0.2s;
        }

        .card-btn:hover {
            background-color: #66a88d;
        }

        .conditions-text {
            font-size: 12px;
            color: #888;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                /* In a real app, replace with hamburger menu */
            }

            .req-container {
                flex-direction: column;
                text-align: center;
            }

            .req-item {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .loans-grid {
                gap: 30px;
            }
        }

        .loan-image:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

        .loan-detail {
            display: block;
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            text-align: center;
        }
