
            .object-ks {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
            }
    
            .object-ks:last-child {
                border-bottom: none;
            }		
            .object-ks a {
                text-decoration: none;
                color: #bdbdbd;
                font-weight: bold;
                font-size: 14px;
            }
    
            .modern-footer {
                background-color: #2a2a2a;
                color: #e0e0e0;
                padding: 3rem 0 1rem;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                position: relative;
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1.5rem;
            }

            .footer-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                margin-bottom: 2rem;
            }

            .footer-section {
                margin-bottom: 1.5rem;
            }

            .company-section {
                padding-right: 1.5rem;
            }

            .footer-title {
                color: #ffffff;
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
                padding-bottom: 0.5rem;
                position: relative;
            }

            .footer-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0px;
                width: 120px;
                height: 2px;
                background-color: #ec0000;
            }


            
            .typing-animation {
                font-size: 1.5rem;
                font-weight: 700;
                color: white;
                margin-bottom: 1rem;
                overflow: hidden;
                white-space: nowrap;
                border-right: 3px solid #e74c3c;
                animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
            }

            @keyframes typing {
                from { width: 0 }
                to { width: 100% }
            }

            @keyframes blink-caret {
                from, to { border-color: transparent }
                50% { border-color: #e74c3c; }
            }

            .company-description {
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .social-links {
                display: flex;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .social-icon {
                color: #e0e0e0;
                background-color: rgba(255, 255, 255, 0.1);
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .social-icon:hover {
                background-color: #e74c3c;
                color: white;
                transform: translateY(-3px);
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                color: #bdbdbd;
                text-decoration: none;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
            }

            .footer-links a:hover {
                color: #ffffff;
                padding-left: 5px;
            }

            .footer-links i {
                margin-right: 8px;
                font-size: 0.8rem;
                color: #f11800;
            }

            .information-ks {
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
            }

            .object-ks {
                display: flex;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .contact-icon {
                color: #df1600;
                margin-top: 3px;
                font-size: 1rem;
            }

            .whatsapp-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            .whatsapp-links a {
                color: #bdbdbd;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .whatsapp-links a:hover {
                color: #ffffff;
            }

            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 1.5rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 1rem;
            }

            .copyright {
                font-size: 0.9rem;
                color: #bdbdbd;
            }


        
            @media (max-width: 768px) {

                .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .footer-title {
   text-align: center;
    display: block;
    width: 100%;
  }

  .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background-color: #ec0000;
    }
                .footer-grid {
                    grid-template-columns: 1fr;
                }
                
                .footer-section {
                    margin-bottom: 2rem;
                }
                
                .footer-bottom {
                    flex-direction: column;
                }
                
                .footer-legal {
                    flex-wrap: wrap;
                    justify-content: center;
                }
            }

            @media (min-width: 992px) {
                .footer-grid {
                    grid-template-columns: repeat(4, 1fr);
                }
            }
    