        .footer {
            background-color: #272727;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-section {
            margin-bottom: 30px;
        }

        .logo {
            width: 150px;
            height: 60px;
            margin-bottom: 20px;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .company-info {
            color: #F28F49;
            margin-bottom: 5px;
        }

        .company-info div {
            margin-bottom: 3px;
            font-size: 14px;
        }

        .contact-info {
            margin: 25px 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .contact-icon {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            display: inline-block;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background-color: #404040;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background-color: #F28F49;
            transform: translateY(-2px);
        }

        .social-icon img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        .footer-bottom {
            border-top: 1px solid #404040;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 12px;
            color: #F3F3F3;
        }

        .footer-bottom a,
        .footer span {
            color: #F3F3F3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #ff984f;
        }

        .contact-info div a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        @media (max-width: 768px) {
            li.site-logo {
                display: flex;
                margin: 0;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .contact-item {
                font-size: 13px;
            }

            .social-icons {
                gap: 12px;
            }
        }