 <style>
        /* Section Title */
        .section-title h1 {
            font-weight: 700;
            font-size: 32px;
            color: #003366;
        }

        /* Profile Card */
        .profile-card {
            background: #ffffff;
            border-radius: 8px;
            transition: 0.3s;
        }

        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .profile-card img {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            height: 300px;
            object-fit: cover;
        }

        /* Tabs */
        .nav-tabs .nav-link {
            font-weight: 600;
            color: #003366;
        }

        .nav-tabs .nav-link.active {
            background-color: #003366 !important;
            color: #fff !important;
        }

        /* Infrastructure Icons */
        .lab-item i {
            color: #007bff;
        }

        /* Responsive Fix */
        @media (max-width: 768px) {
            .profile-card img {
                height: 220px;
            }
        }
    </style>