        /* Custom styles for contact page only */
        .contact-container {
            background-color: rgba(26, 33, 50, 0.7);
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            animation: fadeIn 0.6s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .contact-form input,
        .contact-form textarea {
            background-color: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(0, 123, 255, 0.2);
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            background-color: white;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
        }
        
        .contact-form label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #23cec5;
        }
        
        .contact-form button {
            background: linear-gradient(to right, #007bff, #0056b3);
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
        }
        
        /* Floating background elements */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(35, 206, 197, 0.1) 0%, rgba(35, 206, 197, 0) 70%);
            z-index: -1;
        }
        
        .bg-shape-1 {
            top: 10%;
            left: 10%;
            width: 300px;
            height: 300px;
        }
        
        .bg-shape-2 {
            bottom: 10%;
            right: 10%;
            width: 400px;
            height: 400px;
        }