/* footer */
.footer {
            background-color: #262626;
            padding: 40px 0 20px 0;
            position: relative;
        }

       
        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-left {
            flex: 1;
            max-width: 400px;
        }

        .footer-left p {
            font-size: 12px;
            line-height: 1.6;
            color: #FFFFFF;
        }

        .footer-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
        }


        .footer-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color:white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #E74720;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #404040;
            padding-top: 20px;
        }

        .copyright {
            font-size: 12px;
            color: #8F9BB7;
        }

        .copyright a {
            color: #F16522;
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #FFFFFF1A;
            border-radius: 8px;
            border: 1px solid #282D45
        }

       

        .social-links a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .footer-main {
                flex-direction: column;
                text-align: center;
                gap: 30px;
                align-items: center;
            }

            .footer-center {
                position: static;
                transform: none;
                order: -1;
            }

            .footer-right {
                justify-content: center;
            }

            .nav-links {
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }