 footer {
            background-color: black;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-left {
            width: 30%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-tittle {
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }
        
        .footer-left p {
            color: #bdc3c7;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-title i {
            font-size: 1.2rem;
            color: white;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: white;
        }
        
        .footer-links {
            list-style: none;
            width: 100%;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
        }
        
        .contact-info-item i {
            color: #bdc3c7;
            font-size: 1.1rem;
            margin-top: 3px;
            min-width: 20px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
        }
        
        .contact-label {
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2px;
        }
        
        .contact-value {
            color: #bdc3c7;
            font-size: 0.95rem;
        }
        
        .nav-links li a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nav-links li a i {
            color: #bdc3c7;
            font-size: 1.1rem;
            width: 20px;
        }

        .copyright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .copyright a:hover {
            color: white;
        }
        
        .links-footer {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .links-footer p {
            margin: 0;
            color: #bdc3c7;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .links-footer p:hover {
            color: white;
        }
        
        .links-end a {
            color: white;
            font-weight: 500;
        }
        
        .links-end a:hover {
            text-decoration: underline;
        }
