        /* Impact Section Styles */
        
        .impact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(204, 54, 52, 0.1)), url('../images/acity-background.jpg') center/cover no-repeat;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .impact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(204,54,52,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(204,54,52,0.05)"/><circle cx="80" cy="70" r="1" fill="rgba(204,54,52,0.1)"/><circle cx="30" cy="80" r="1.2" fill="rgba(204,54,52,0.05)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%,
            100% {
                transform: translateY(0px) translateX(0px);
            }
            25% {
                transform: translateY(-10px) translateX(5px);
            }
            50% {
                transform: translateY(-20px) translateX(-5px);
            }
            75% {
                transform: translateY(-10px) translateX(10px);
            }
        }
        
        .impact-content {
            position: relative;
            z-index: 2;
        }
        
        .impact-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
            line-height: 1.1;
        }
        
        .impact-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .program-links {
            margin-top: 2rem;
        }
        
        .program-link {
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0 1.5rem 0 0;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .program-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transition: width 0.3s ease;
        }
        
        .program-link:hover {
            color: white;
            transform: translateY(-2px);
        }
        
        .program-link:hover::after {
            width: 100%;
        }
        
        .passion-text {
            color: var(--primary-light);
            font-weight: 600;
            font-size: 1.2rem;
            margin: 2rem 0 1rem 0;
            text-shadow: 0 0 20px rgba(204, 54, 52, 0.3);
        }
        /* Application Form Card */
        
        .application-form-card {
            background: #ffffff;
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .application-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .form-subtitle {
            color: #666;
            font-size: 1.1rem;
        }
        
        .urgency-banner {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: center;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
        }
        
        @keyframes pulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }
        
        .urgency-text {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .deadline-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .form-benefits {
            margin-top: 2rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #555;
        }
        
        .benefit-icon {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        /* Responsive Design */
        
        @media (max-width: 768px) {
            .impact-title {
                font-size: 2.5rem;
            }
            .impact-description {
                font-size: 1.1rem;
            }
            .application-form-card {
                padding: 2rem 1.5rem;
            }
            .form-title {
                font-size: 1.5rem;
            }
            .program-link {
                display: block;
                margin-bottom: 1rem;
                margin-right: 0;
            }
        }
        /* Footer Styles */
        
        .footer-section {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: white;
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
        }
        
        .footer-brand {
            margin-bottom: 2rem;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .university-logo {
            max-height: 80px;
            width: auto;
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .university-logo:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }
        
        .brand-text {
            text-align: center;
        }
        
        .university-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
        }
        
        .university-location {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-weight: 400;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }
        /* Responsive Footer */
        
        @media (max-width: 768px) {
            .footer-section {
                padding: 2rem 0 1.5rem;
            }
            .logo-container {
                flex-direction: column;
                gap: 1rem;
            }
            .university-logo {
                max-height: 60px;
            }
            .university-name {
                font-size: 1.4rem;
            }
            .university-location {
                font-size: 0.9rem;
            }
        }