 :root {
            --primary-color: #0d6efd;
            --secondary-color: #343a40;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 56px;
        }
        
        /* Navbar */
        .navbar {
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Hero */
        .hero-section {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0;
        }
        
        /* Section Contact */
        .contact-container {
            padding: 3rem 0;
        }
        
        .contact-info {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 8px;
            height: 100%;
        }
        
        .info-sectionc {
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 2.5rem;
        }
        
        .info-sectionc .icon {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        
        .social-icons a {
            display: inline-block;
            margin-right: 0.75rem;
            font-size: 1.25rem;
            color: var(--secondary-color);
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 2rem;
        }
        
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section .row {
                flex-direction: column-reverse;
            }
            
            .hero-section .col-lg-6 {
                margin-bottom: 1.5rem;
            }
            
            .contact-container .row {
                flex-direction: column;
            }
            
            .contact-info {
                margin-top: 2rem;
            }
        }