@charset "utf-8";


   /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
           /* position: relative;*/
        }
        
        .footer-links h4:after,
        .footer-contact h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-contact p {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: flex-start;
            color: #bbb;
        }
        
        .footer-contact i {
            color: var(--secondary);
            margin-top: 5px;
        }
        


