
        .container1 {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        
        /* Footer Styles */
        .site-footer1 {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px;
            margin-top: 45px;
        }
        
        .footer-container1 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column1 {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-column1 h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        .footer-column1 p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: #d9d7d7;
        }
        
        .contact-info1 {
            list-style: none;
        }
        
        .contact-info1 li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info1 i {
            color: #fff;
            margin-right: 10px;
            width: 20px;
            text-align: center;
            margin-top: 3px;
        }
        
        .social-links1 {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
       .social-links1 a:hover {color: #fff;}
        
        .social-icon1 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #3498db;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon1:hover {
            background-color: #258C44;
            transform: translateY(-3px);
        }
        
        .payment-methods1 {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        
        .payment-icon1 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 35px;
            background-color: #fff;
            border-radius: 5px;
            color: #333;
            font-size: 1.8rem;
        }
        
        .payment-icon1 i.fa-paypal {
            color: #003087;
        }
        
        .payment-icon1 i.fa-cc-visa {
            color: #1a1f71;
        }
        
        .payment-icon1 i.fa-cc-mastercard {
            color: #eb001b;
        }
        
        .payment-icon1 i.fa-cc-amex {
            color: #2e77bc;
        }
        
        .payment-icon1 i.fa-cc-discover {
            color: #ff6000;
        }
        
        .payment-icon1 i.fa-cc-jcb {
            color: #0c4b85;
        }
        
        .payment-icon1 i.fa-cc-diners-club {
            color: #0079be;
        }
        
        .payment-icon1 i.fa-cc-unionpay {
            color: #0066b1;
        }
        
        .payment-icon1 i.fa-cc-amazon-pay {
            color: #ff9900;
        }
        
        .footer-links1 {
            list-style: none;
        }
        
        .footer-links1 li {
            margin-bottom: 10px;
        }
        
        .footer-links1 a {
            color: #d9d7d7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links1 a:hover {
            color: #3498db;
            padding-left: 5px;
        }
        
        .footer-bottom1 {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright1 {
            font-size: 0.9rem;
            color: #95a5a6;
        }
        
        .footer-bottom-links1 {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links1 a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links1 a:hover {
            color: #3498db;
        }
        
        .newsletter-form1 {
            display: flex;
            margin-top: 10px;
        }
        
        .newsletter-input1 {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 0.9rem;
        }
        
        .newsletter-btn1 {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-btn1:hover {
            background-color: #2980b9;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-container1 {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-column1 {
                min-width: 100%;
            }
            
            .footer-bottom1 {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }
        
        /* Code Display Styles */
        .code-display1 {
            background-color: #1e1e1e;
            color: #d4d4d4;
            padding: 20px;
            border-radius: 8px;
            margin-top: 40px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.5;
            display: none;
        }
        
        .code-display1 h3 {
            color: #fff;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        .code-keyword1 {
            color: #569cd6;
        }
        
        .code-tag1 {
            color: #808080;
        }
        
        .code-attribute1 {
            color: #9cdcfe;
        }
        
        .code-value1 {
            color: #ce9178;
        }
        
        .code-comment1 {
            color: #6a9955;
        }
        .foot-bt{font-weight: 400;color: #ffffff;}
        .foot-xin{color: #d9d7d7;}

    